-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.38 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
{
"name": "app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:build": "webpack && (python3 app/__init__.py || python app/__init__.py)",
"start": "python app/__init__.py",
"webpack": "webpack --progress --verbose --colors --display-error-details",
"pysetup": "python3 setup.py install || python setup.py install",
"build": "npm run webpack && npm install && npm run pysetup",
"venv": "virtualenv -p python3 env || virtualenv -p $(which python3) env || virtualenv -p $(where.exe python3) env",
"camera": "python3 app/websocket.py"
},
"author": "",
"license": "ISC",
"dependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"css-hot-loader": "^1.3.3",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"font-awesome": "^4.7.0",
"image-webpack-loader": "^3.4.2",
"manifest-revision-webpack-plugin": "^0.4.1",
"material-ui": "^0.19.4",
"node-sass": "^4.6.1",
"react": "^16.1.1",
"react-bootstrap": "^0.31.5",
"react-dom": "^16.1.1",
"sass-loader": "^6.0.6",
"socket.io-client": "^2.0.4",
"style-loader": "^0.19.0",
"webpack": "^3.8.1"
}
}