-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
122 lines (122 loc) · 3.63 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "machine-collaboration-utility",
"version": "1.8.1",
"private": true,
"main": "server/launchElectron.js",
"build": {
"asar": false,
"extends": null
},
"scripts": {
"electron": "npm-run-all -p start:css start:headless-js start:electron",
"start": "NODE_ENV=dev npm-run-all -p start:css start:js start:server",
"start:server": "nodemon -w bots -w server server/launchServer.js",
"start:js": "PORT=3000 react-scripts start",
"start:headless-js": "BROWSER=NONE PORT=3000 react-scripts start",
"start:electron": "nodemon -w server -w bots node_modules/.bin/electron .",
"start:css": "nodemon -e scss -w styles -x 'npm run build:css'",
"build":
"npm run build:cleanup && npm run build:css && npm run build:js && mv build server/build",
"build:js": "react-scripts build",
"build:cleanup": "rm -rf build && rm -rf server/build",
"build:css":
"npm run prebuild:css && postcss src/main.css --use autoprefixer -d src/",
"package": "npm run build && electron-rebuild && electron-builder",
"prebuild:css": "node-sass styles/main.scss -o src/",
"test": "node node_modules/gulp/bin/gulp.js test"
},
"licenses": [
{
"type": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
}
],
"dependencies": {
"bluebird": "^3.5.0",
"dotenv": "^2.0.0",
"error-to-json": "^1.1.0",
"exec-then": "^1.3.1",
"fs-promise": "^0.5.0",
"fs-walk": "0.0.1",
"gcode-json-converter": "^1.2.0",
"heartbeater": "^0.1.0",
"ip": "^1.1.3",
"is-browser": "^2.0.1",
"javascript-state-machine": "^2.3.5",
"koa": "^2.3.0",
"koa-body": "^2.5.0",
"koa-bodyparser": "^2.2.0",
"koa-convert": "^1.2.0",
"koa-cors": "0.0.16",
"koa-json": "^1.1.3",
"koa-router": "^7.2.1",
"koa-socket": "^4.4.0",
"koa-static": "^2.0.0",
"line-by-line": "^0.1.5",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"motion-controller-emulator": "^0.1.2",
"prettier": "^1.7.4",
"prop-types": "^15.5.10",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"sequelize": "^3.30.4",
"serialport": "^6.0.0",
"should": "^11.1.0",
"simpl-schema": "^0.4.0",
"source-map-support": "^0.5.0",
"sqlite3": "^3.1.13",
"superagent": "^3.6.2",
"tar-pack": "^3.4.0",
"timer-stopwatch": "^0.2.0",
"twilio": "^3.6.5",
"unzip2": "^0.2.5",
"usb": "^1.2.0",
"uuid": "^3.0.1",
"winston": "^2.2.0",
"winston-daily-rotate-file": "^1.4.6"
},
"engines": {
"node": "^8",
"npm": "^5"
},
"devDependencies": {
"babel-eslint": "^7.2.2",
"electron": "^1.7.9",
"electron-builder": "^19.36.0",
"electron-installer-dmg": "^0.2.1",
"electron-packager": "^9.1.0",
"electron-rebuild": "^1.6.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"gulp": "^3.9.1",
"gulp-mocha": "^3.0.1",
"gulp-nodemon": "^2.2.1",
"node-sass": "^4.5.3",
"nodemon": "^1.12.1",
"npm-run-all": "^4.1.1",
"postcss-cli": "^4.1.1",
"rc-slider": "^8.3.5",
"react": "^15.6.1",
"react-autobind": "^1.0.6",
"react-bootstrap": "^0.31.3",
"react-dom": "^15.6.1",
"react-dropzone": "^3.5.3",
"react-flip-move": "^2.9.15",
"react-hot-loader": "^1.3.0",
"react-router": "^4.1.2",
"react-router-dom": "^4.1.2",
"react-router-prop-types": "^0.0.1",
"react-scripts": "^1.0.14",
"webpack": "^3.5.6"
},
"proxy": {
"/*": {
"target": "http://localhost:9000/",
"secure": "false"
}
}
}