-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.41 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
{
"name": "restaurant-react",
"version": "0.1.0",
"private": true,
"dependencies": {
"axios": "^0.18.0",
"currency.js": "^1.1.0",
"date-fns": "^1.29.0",
"material-ui": "next",
"material-ui-icons": "^1.0.0-beta.36",
"node-sass-chokidar": "^1.1.0",
"npm-run-all": "^4.1.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"react-router-redux": "^4.0.8",
"react-sortable-hoc": "^0.6.8",
"redux": "^3.7.2",
"redux-form": "^7.3.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"shortid": "^2.2.8",
"socket.io-client": "^2.0.4"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.1.2",
"chai-enzyme": "^0.8.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"mocha": "^5.0.2",
"react-scripts": "1.1.1"
},
"scripts": {
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build": "react-scripts build",
"test2": "react-scripts test --env=jsdom",
"test": "mocha --compilers js:babel-register --watch",
"eject": "react-scripts eject"
}
}