forked from tagyoureit/nodejs-poolController
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·55 lines (55 loc) · 1.7 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
{
"name": "nodejs-poolcontroller",
"version": "6.1.1",
"description": "nodejs-poolController",
"main": "app.js",
"author": {
"name": "Russell Goldin",
"name2": "Robert Strouse"
},
"license": "GNU Affero General Public License v3.0",
"repository": {
"type": "git",
"url": "https://github.com/tagyoureit/nodejs-poolController.git"
},
"scripts": {
"start": "npm run build && node dist/app.js",
"start:cached": "node dist/app.js",
"build": "tsc",
"build-prod": "ncc build app.ts -o dist/compiled",
"watch": "tsc -w"
},
"dependencies": {
"@influxdata/influxdb-client": "^1.6.0",
"express": "^4.17.1",
"extend": "^3.0.2",
"jszip": "^3.5.0",
"mqtt": "^4.2.1",
"multicast-dns": "^7.2.0",
"node-ssdp": "^4.0.0",
"serialport": "^9.0.1",
"socket.io": "^2.2.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/express": "^4.17.8",
"@types/extend": "^3.0.1",
"@types/node": "^12.12.51",
"@types/socket.io": "^2.1.11",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"@vercel/ncc": "latest",
"eslint": "^7.8.1",
"eslint-config-defaults": "^9.0.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"grunt": "^1.3.0",
"grunt-banner": "^0.6.0",
"source-map-support": "^0.5.13",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
}
}