forked from pinguxx/mudslinger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.27 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
{
"name": "mudslinger",
"watch": {
"build-client": {
"patterns": [
"ts"
],
"extensions": "ts",
"quiet": false
},
"start": "{ts}/*.js"
},
"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-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",
"watch": "npm-watch"
},
"devDependencies": {
"@types/express": "^4.0.35",
"@types/jquery": "^2.0.39",
"@types/node": "20.0.0",
"@types/socket.io": "^1.4.27",
"@types/socket.io-client": "^1.4.29",
"codemirror": "^5.24.2",
"fs-extra": "^2.0.0",
"jquery": "3.7.1",
"jqwidgets-framework": "^19.2.0",
"rimraf": "^2.7.1",
"rollup": "^0.41.4",
"socket.io": "^1.7.2",
"socket.io-client": "^1.7.2",
"tslint": "^4.4.2",
"typescript": "^5.4.5"
},
"dependencies": {
"express": "^4.14.0",
"npm-watch": "^0.13.0"
}
}