-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
37 lines (37 loc) · 1.24 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
{
"name": "mudslinger",
"scripts": {
"prestart": "node tools/prestart.js",
"start": "node dist/server/app.js",
"postinstall": "node tools/postinstall.js",
"clean": "rimraf ts/build && rimraf dist && rimraf static/mudslinger.js",
"build": "npm run build-client && npm run build-server",
"build-client": "tsc -p ts/tsconfig.client.json && rollup -c ts/rollup.config.js",
"build-client-test": "tsc -p ts/tsconfig.client.test.json && rollup -c ts/rollup.test.config.js",
"build-server": "tsc -p ts/tsconfig.server.json",
"lint": "tslint -c ts/tslint.json ts/src/client/*.ts && tslint -c ts/tslint.json ts/src/server/*.ts"
},
"devDependencies": {
"@types/express": "^4.0.35",
"@types/jquery": "^2.0.39",
"@types/node": "^8.10.11",
"@types/qunit": "^2.5.0",
"@types/socket.io": "^1.4.27",
"@types/socket.io-client": "^1.4.29",
"codemirror": "^5.24.2",
"express": "^4.14.0",
"fs-extra": "^2.0.0",
"jquery": "1.11.1",
"jqwidgets-framework": "^4.6.0",
"qunit": "^2.6.0",
"rimraf": "^2.5.4",
"rollup": "^1.1.2",
"socket.io": "^1.7.2",
"socket.io-client": "^1.7.2",
"tslint": "^4.4.2",
"typescript": "^3.2.4"
},
"dependencies": {
"express": "^4.14.0"
}
}