-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.46 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
69
70
71
72
73
74
75
76
{
"name": "face-recognition",
"version": "0.1.0",
"private": true,
"dependencies": {
"archiver": "^2.1.1",
"axios": "^0.18.0",
"babel-core": "^6.26.0",
"babel-runtime": "^6.26.0",
"body-parser": "^1.18.2",
"classnames": "^2.2.5",
"cors": "^2.8.4",
"express": "^4.16.2",
"extract-zip": "^1.6.6",
"mime-types": "^2.1.18",
"mobx": "^4.1.0",
"mobx-react": "^5.0.0",
"mobx-state-tree": "^2.0.2",
"multiparty": "^4.1.3",
"node-sass-chokidar": "^1.0.1",
"path-parse": "^1.0.5",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-app-rewire-mobx": "^1.0.7",
"react-app-rewired": "^1.5.0",
"react-dom": "^16.2.0",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-scripts": "1.1.1",
"uniqid": "^4.1.1",
"uuid": "^3.2.1",
"webpack-isomorphic-tools": "^3.0.5",
"zip-stream": "^1.2.0"
},
"devDependencies": {
"autoprefixer": "^8.1.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^22.4.1",
"babel-loader": "^7.1.3",
"eslint": "^4.18.2",
"eslint-config-airbnb": "16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-lodash-fp": "^2.1.3",
"eslint-plugin-react": "^7.7.0",
"file-loader": "^1.1.11",
"flow-bin": "^0.66.0",
"mobx-devtools-mst": "^0.9.14",
"mobx-react-devtools": "^5.0.1",
"nodemon": "^1.17.2",
"normalize.css": "^8.0.0",
"postcss": "6.0.19",
"postcss-loader": "^2.1.1",
"prettier": "^1.11.1",
"sass-loader": "^6.0.7",
"stylelint": "^9.1.3",
"stylelint-config-recommended-scss": "^3.1.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-scss": "^2.4.0"
},
"scripts": {
"start": "NODE_PATH=src/ react-app-rewired start",
"start-dev-server": "nodemon ./src/api/server.js",
"start-live": "forever start ./src/api/server.js",
"live-stop": "forever stop ./src/api/server.js",
"live-restart": "forever restart ./src/api/server.js",
"build": "NODE_PATH=src/ react-app-rewired build",
"test": "react-app-rewired test --env=jsdom",
"eject": "react-app-rewired eject",
"build-css": "node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/ --watch --recursive"
}
}