-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
65 lines (65 loc) · 2.26 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": "nodejs-poolcontroller-webclient",
"version": "6.1.0",
"description": "A web client for the nodejs-poolcontroller app v6.0 and higher",
"main": "/dist/index.html",
"scripts": {
"start:cached": "env NODE_ENV=production node dist/Server.js",
"start": "npm run cleanup && npm run build && npm run start:cached",
"cleanup": "rimraf dist",
"debug:watch": "./node_modules/.bin/tsc-watch --onSuccess \"node ./dist/Server.js\"",
"dev:parcel": "parcel serve ./web/dashboard/index.html",
"build": "tsc && npm run build:parcel",
"build:parcel": "parcel build --public-url . web/dashboard/index.html --out-dir dist/web",
"debug:server": "./node_modules/.bin/tsc-watch --onSuccess \"node --inspect ./dist/Server.js\"",
"debug:client": "./node_modules/.bin/tsc-watch --onSuccess \"node ./dist/Server.js\"",
"watch": "tsc -w"
},
"author": "Russell Goldin",
"license": "AGPL-3.0",
"browserslist": [
"last 2 Chrome versions"
],
"dependencies": {
"@types/react-data-grid": "^4.0.5",
"axios": "^0.19.2",
"express": "^4.17.1",
"multicast-dns": "^7.2.2",
"node-ssdp": "^4.0.0",
"parcel-bundler": "^1.12.4",
"react": "^16.13.1",
"react-data-grid": "^6.1.0",
"react-dom": "^16.13.1",
"react-horizontal-stacked-bar-chart": "^8.15.2",
"react-infinite-calendar": "^2.3.1",
"react-rangeslider": "^2.2.0",
"react-switch": "^5.0.1",
"react-timekeeper": "^2.1.1",
"reactstrap": "^8.5.1",
"rimraf": "^3.0.2",
"socket.io": "^2.3.0",
"socketio-wildcard": "^2.0.0",
"tsc-watch": "^4.2.9",
"update": "^0.7.4",
"upgrade": "^1.1.0"
},
"devDependencies": {
"@attently/riek": "^2.0.1",
"@babel/core": "^7.10.5",
"@babel/plugin-proposal-optional-chaining": "^7.10.4",
"@types/express": "^4.17.7",
"@types/express-serve-static-core": "^4.17.9",
"@types/node": "^14.0.24",
"@types/parcel-bundler": "^1.12.1",
"@types/react": "^16.9.43",
"@types/reactstrap": "^8.5.0",
"@types/socket.io": "^2.1.10",
"@types/socket.io-client": "^1.4.33",
"@typescript-eslint/parser": "^3.7.0",
"eslint": "^7.5.0",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"react-router-dom": "^5.2.0",
"typescript": "^3.9.7"
}
}