forked from petrovicstefanrs/30_seconds_of_knowledge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.65 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "30_seconds_of_knowledge",
"version": "1.0.0",
"description": "Google Chrome Extension that lets you gain new developer skills, every time you open a New Tab",
"scripts": {
"build": "node utils/build.js",
"start": "node utils/webserver.js",
"test": "eslint src/"
},
"dependencies": {
"highlight.js": "^9.13.1",
"lodash": "^4.17.11",
"react": "^16.7.0",
"react-codepen-prefill": "^0.1.1",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.7.0",
"react-markdown": "^4.0.6"
},
"devDependencies": {
"@babel/core": "^7.1.5",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "8.0.5",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"clean-webpack-plugin": "^1.0.0",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "2.1.0",
"eslint": "^5.14.0",
"eslint-config-react-app": "^3.0.7",
"eslint-plugin-flowtype": "^3.4.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"file-loader": "3.0.1",
"fs-extra": "7.0.1",
"html-loader": "0.5.5",
"html-webpack-plugin": "3.2.0",
"prettier-stylelint": "^0.4.2",
"react-hot-loader": "^4.6.3",
"style-loader": "^0.23.1",
"webpack": "4.28.4",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "3.1.14",
"write-file-webpack-plugin": "4.5.0"
},
"eslintConfig": {
"extends": "react-app"
},
"babel": {
"presets": [
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
}
}