forked from killer-queen-stats/kqstats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.15 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
{
"name": "kqstats",
"version": "1.0.0",
"description": "",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"clean": "del-cli build",
"react:build": "react-scripts-ts build",
"react:eject": "react-scripts-ts eject",
"react:start": "react-scripts-ts start",
"react:test": "react-scripts-ts test --env=jsdon",
"start": "npm-run-all --parallel \"start:server -- {@}\" start:client --",
"start:client": "npm run react:start",
"start:debug": "cross-env ENV=development npm run start --",
"start:prod": "cross-env ENV=production PORT=80 npm run start --",
"start:server": "ts-node --project src/server/tsconfig.json src/server/app.ts",
"poststart": "npm run react:start",
"test": "cross-env TS_NODE_PROJECT=test/tsconfig.json mocha -r ts-node/register --exit test/**/*.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"bootstrap": "^4.1.1",
"chai": "^4.1.2",
"cross-env": "^5.2.0",
"del-cli": "^1.1.0",
"eventemitter-ts": "0.0.4",
"express": "^4.16.3",
"mocha": "^5.2.0",
"moment": "^2.22.2",
"netmask": "^1.0.6",
"nexe": "^2.0.0-rc.30",
"npm": "^6.4.1",
"npm-run-all": "^4.1.3",
"portscanner": "^2.2.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-router-dom": "^4.3.1",
"react-scripts-ts": "^2.16.0",
"rimraf": "^2.6.2",
"sinon": "^5.1.1",
"sleep-promise": "^8.0.1",
"socket.io": "^2.1.1",
"socket.io-client": "^2.1.1",
"ts-node": "^4.1.0",
"uuid": "^3.3.2",
"websocket": "^1.0.26"
},
"devDependencies": {
"@types/bootstrap": "^4.1.1",
"@types/chai": "^4.1.4",
"@types/express": "^4.16.0",
"@types/lodash": "^4.14.116",
"@types/mocha": "^2.2.48",
"@types/netmask": "^1.0.30",
"@types/node": "^9.6.22",
"@types/portscanner": "^2.1.0",
"@types/react": "^16.4.6",
"@types/react-dom": "^16.0.6",
"@types/react-router-dom": "^4.2.7",
"@types/rimraf": "^2.0.2",
"@types/sinon": "^5.0.1",
"@types/socket.io": "^1.4.36",
"@types/socket.io-client": "^1.4.32",
"@types/uuid": "^3.4.3",
"@types/websocket": "0.0.36",
"typescript": "^2.9.2"
}
}