-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.54 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.54 KB
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
{
"private": true,
"author": "Kyle Mathews <mathews.kyle@gmail.com>",
"dependencies": {
"antd": "^2.1.0",
"autoprefixer": "^7.1.2",
"color": "^2.0.0",
"express": "^4.15.4",
"flexbox-react": "^4.4.0",
"lodash": "^4.17.4",
"postcss": "^6.0.9",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-helmet": "^5.1.3",
"react-jss": "^7.1.0",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.0"
},
"scripts": {
"build": "webpack",
"start": "if [ \"$NODE_ENV\" = \"production\" ] ; then node index.js ; else nodemon -e js,jsx ; fi",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .js --ext .jsx"
},
"devDependencies": {
"babel-eslint": "7",
"babel-loader": "^7.1.2",
"babel-plugin-import": "^1.0.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.8.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-register": "^6.26.0",
"babel-runtime": "^6.9.2",
"eslint": "^4.5.0",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.3.0",
"eslint-plugin-standard": "^3.0.1",
"nodemon": "^1.11.0",
"webpack": "^3.5.5",
"webpack-dev-middleware": "^1.12.0"
}
}