-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
33 lines (33 loc) · 1.16 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
{
"name": "netlab",
"version": "1.1.9",
"dependencies": {
"es6-shim": "^0.22.2",
"express": "~4.4.5",
"formidable": "^1.0.16",
"request": "~2.21.0",
"socket.io": "~1.0.0",
"underscore": "~1.4.4"
},
"devDependencies": {
"electron-prebuilt": "^1.2.2",
"electron-packager": "^7.5.1",
"gaze": "~0.5.2",
"matchdep": "~0.1.2",
"uglify-js": "~2.4.16"
},
"engines": {
"node": "4.5.5"
},
"scripts": {
"start": "pkill phantomjs & node server/cli.js",
"build": "npm run clean && cp ./server/emptyPatch.ntk ./server/currentPatch.ntk && npm run optimizeRequire && npm run compileSCSS && cp ./package.json ./server/dist",
"package": "npm run build && ./buildScripts/packageElectron.sh",
"dev": "npm run clean && npm run copyAppToDist && npm run compileSCSS && node ./buildScripts/liveReload.js & open http://localhost:9001 & npm start",
"copyAppToDist": "cp -r ./app/* ./server/dist && cp ./package.json ./server/dist",
"clean": "./buildScripts/clean.sh",
"optimizeRequire": "./buildScripts/optimizeRequire.sh",
"compileSCSS": "./buildScripts/buildSCSS.sh",
"reset": "./buildScripts/resetPatch.sh"
}
}