-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.81 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
59
60
61
62
63
64
65
66
67
68
{
"name": "react-app",
"version": "1.0.0",
"description": "react basic scaffold",
"main": "index.js",
"author": "Tej Powar",
"license": "MIT",
"engines": {
"node": "8.4.0",
"yarn": "^0.27.5"
},
"scripts": {
"start": "webpack-dev-server",
"server": "babel-watch server",
"clean": "rimraf dist",
"lint": "eslint ./app/**/**.js",
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage"
},
"proxy": "http://localhost:8181/",
"dependencies": {
"babel-core": "^6.26.0",
"babel-polyfill": "^6.26.0",
"cors": "^2.8.4",
"express": "^4.16.1",
"material-ui": "^0.20.0",
"path": "^0.12.7",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-hot-loader": "^3.0.0-beta.7",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-watch": "^2.0.7",
"css-loader": "^0.28.7",
"eslint": "3.19.0",
"eslint-config-airbnb": "15.1.0",
"eslint-loader": "1.8.0",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jsx-a11y": "5.1.0",
"eslint-plugin-react": "7.2.0",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^1.1.4",
"html-webpack-plugin": "^2.30.1",
"husky": "^0.14.3",
"jest": "^21.2.1",
"node-sass": "^4.5.3",
"open-browser-webpack-plugin": "^0.0.5",
"react-test-renderer": "^16.0.0",
"rimraf": "2.6.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"url-loader": "^0.5.9",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.9.1"
}
}