-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.91 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": "usb-support",
"version": "1.1.16",
"description": "",
"main": "/dist/index.js",
"typings": "/dist/index.d.ts",
"scripts": {
"test": "jest",
"test:watch": "npm run test -- --watch",
"start": "npm-run-all --parallel start:webapp start:server",
"watch": "npm-run-all --parallel start:webapp:ng start:server:watch",
"start:ssl": "npm-run-all --parallel start:webapp:ssl start:server:ssl",
"start:cli": "ts-node cli",
"start:server": "nodemon --watch 'src/server/**/*.ts' --ignore 'src/server/**/*.spec.ts' --exec 'ts-node' src/server/server.start.ts",
"start:server:watch": "ts-node-dev src/server/server.start.ts --watch",
"start:server:ssl": "npm run start:server -- --ssl",
"start:webapp": "ack-reload --dir ./webapp/dist/webapp --host 0.0.0.0 --port 4200",
"start:webapp:ng": "cd webapp && npm run start",
"start:webapp:ssl": "cd webapp && npm run start:ssl",
"build": "npm run build:dist && npm run build:webapp",
"build:webapp": "cd webapp && npm run build",
"build:dist": "tsc",
"patch:version": "npm --no-git-tag-version version patch",
"save": "npm run build && npm run patch:version && git add . && git commit -m \"update\" && git push"
},
"keywords": [],
"author": "",
"license": "ISC",
"peerDependencies": {
"@types/node-hid": ">=1.3.0",
"rxjs": ">=7.3.0",
"usb-detection": ">=4.10.0",
"node-hid": ">=2.1.1",
"nconf": ">=0.11.3",
"ack-x": ">=2.1.1",
"ws": ">=7.4.5"
},
"devDependencies": {
"ack-css-boot": "^3.0.10",
"ack-reload": "^4.0.1",
"rxjs": "^7.3.0",
"@types/jest": "^28.1.1",
"@types/nconf": "^0.10.2",
"@types/node": "^17.0.44",
"@types/node-hid": "^1.3.1",
"@types/ws": "^7.4.7",
"jest": "^28.1.1",
"nodemon": "^2.0.16",
"npm-run-all": "^4.1.5",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.3"
}
}