-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 2.02 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": "itokawa",
"version": "0.6.5-dev",
"description": "DCC Train Control",
"private": true,
"scripts": {
"start": "node dist/server/main.js",
"build": "npm run tsc && npm run bundle",
"tsc": "tsc",
"bundle": "webpack",
"test": "nyc mocha --trace-deprecation -r ts-node/register \"src/**/*.spec.ts\"",
"cli": "node dist/cli/main.js",
"password": "node dist/cli/password-main.js",
"dev-update": "git pull && npm install && npm run build && npm test",
"prod-update": "git pull && npm install && npm run build"
},
"author": "Adrian O'Grady",
"license": "MIT",
"devDependencies": {
"@types/adm-zip": "^0.5.5",
"@types/chai": "^4.3.16",
"@types/chai-as-promised": "^7.1.8",
"@types/chrome-remote-interface": "^0.31.14",
"@types/express": "^4.17.21",
"@types/express-fileupload": "^1.5.1",
"@types/express-serve-static-core": "^4.19.5",
"@types/express-ws": "^3.0.5",
"@types/jsdom": "^21.1.7",
"@types/mocha": "^10.0.9",
"@types/node": "^22.7.4",
"@types/qrcode": "^1.5.5",
"@types/read": "0.0.32",
"@types/sinon": "^17.0.3",
"@types/sqlite3": "^3.1.11",
"@types/supertest": "^6.0.2",
"@types/ws": "^8.5.12",
"@types/xml2js": "^0.4.14",
"chai": "^4.5.0",
"chai-as-promised": "^7.1.1",
"chrome-launcher": "^1.1.2",
"chrome-remote-interface": "^0.33.2",
"html-loader": "^5.1.0",
"jsdom": "^25.0.1",
"mocha": "^10.7.3",
"nyc": "^17.1.0",
"sinon": "^19.0.2",
"supertest": "^7.0.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"adm-zip": "^0.5.16",
"commander": "^12.1.0",
"cookie-parser": "^1.4.6",
"express": "^5.0.0",
"express-fileupload": "^1.5.1",
"express-ws": "^5.0.2",
"ngrok": "^4.3.3",
"pug": "^3.0.3",
"qrcode": "^1.5.4",
"read": "^3.0.1",
"serialport": "^12.0.0",
"sqlite3": "^5.1.7",
"ws": "^8.18.0",
"xml2js": "^0.6.2"
}
}