-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1001 Bytes
/
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
{
"name": "simtron",
"version": "1.0.0",
"private": true,
"scripts": {
"watch": "rm -rf dist && tsc -p src",
"compile": "rm -rf dist && tsc -p src/tsconfig-dist.json",
"start": "npm run compile && pm2 start ./dist/index.js --name simtron-service",
"stop": "pm2 delete simtron-service",
"dev": "DEVELOPMENT=1 DEBUG=app nodemon --watch dist --exec node dist/index.js --"
},
"dependencies": {
"debug": "^4.3.4",
"google-libphonenumber": "^3.2.2",
"node-json-db": "^0.11.0",
"pdu": "*",
"serialport": "^7.1.5",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/debug": "^4.1.4",
"@types/google-libphonenumber": "*",
"@types/node-json-db": "*",
"@types/serialport": "^7.0.3",
"nodemon": "^3.0.2",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "*",
"typescript": "^4.8"
}
}