-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·65 lines (65 loc) · 2.52 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
{
"name": "VisTiles",
"version": "0.0.1",
"private": true,
"scripts": {
"watch-server": "onchange \"server/**/*.{ts,json}\" -v -- npm run build-server",
"watch-client": "onchange \"client/**/*.{ts,json,pug,scss}\" -v -- npm run build-client",
"prestart": "concurrently \"npm run build-server\" \"npm run build-client\" && mkdirp storage",
"start": "concurrently \"npm run watch-server\" \"npm run watch-client\" \"nodemon --watch build/server --debug build/server/bin/www.js\"",
"build-server": "npm run compile-server-js",
"compile-server-js": "tsc -p ./server/tsconfig.json",
"build-client": "npm run compile-client-js && npm run compile-client-css && mkdirp public/build/js && npm run bundle-client",
"compile-client-css": "node-sass -q --output-style compressed ./client/scss -o ./public/build/css",
"compile-client-js": "tsc -p ./client/tsconfig.json",
"bundle-client": "npm run bundle-client-app && npm run bundle-client-debug",
"bundle-client-app": "browserify build/client/index-app.js -o public/build/js/app.js --debug",
"bundle-client-debug": "browserify build/client/index-debug.js -o public/build/js/debug.js --debug"
},
"dependencies": {
"@types/body-parser": "0.0.33",
"@types/cookie-parser": "^1.3.30",
"@types/csv-parse": "^1.1.6",
"@types/d3": "^3.5.37",
"@types/es6-shim": "^0.31.32",
"@types/express": "^4.0.35",
"@types/express-serve-static-core": "^4.0.40",
"@types/jquery": "^2.0.39",
"@types/materialize-css": "^0.97.34",
"@types/mime": "0.0.29",
"@types/morgan": "^1.7.32",
"@types/nconf": "0.0.33",
"@types/node": "^7.0.2",
"@types/node-sass": "^3.10.32",
"@types/node-sass-middleware": "0.0.29",
"@types/nouislider": "^9.0.0",
"@types/serve-favicon": "^2.2.28",
"@types/serve-static": "^1.7.31",
"@types/socket.io": "^1.4.27",
"@types/sqlite3": "^2.2.32",
"@types/winston": "^2.2.0",
"body-parser": "^1.15.2",
"browserify": "^13.1.1",
"concurrently": "^3.1.0",
"cookie-parser": "^1.4.3",
"csv-parse": "^1.1.10",
"d3": "^3.5.17",
"d3-tip": "^0.7.1",
"express": "^4.14.0",
"mkdirp": "^0.5.1",
"morgan": "^1.7.0",
"nconf": "^0.8.4",
"nodemon": "^1.11.0",
"node-sass": "^4.4.0",
"node-sass-middleware": "^0.11.0",
"onchange": "^3.2.1",
"osc": "^2.1.0",
"pug": "^2.0.0-beta9",
"serve-favicon": "^2.3.2",
"socket.io": "^1.5.1",
"socket.io-client": "^1.5.1",
"sqlite3": "^3.1.8",
"typescript": "^2.1.5",
"winston": "^2.3.1"
}
}