-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.33 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
{
"name": "huex",
"version": "0.1.0",
"private": true,
"scripts": {
"prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
"build": "tsc",
"prestart": "npm run build",
"start": "NODE_ENV=development node ./bin/www",
"start:prod": "NODE_ENV=production node ./bin/www",
"dev": "ts-node-dev --respawn --transpileOnly ./app/app.ts"
},
"dependencies": {
"@akanass/rx-http-request": "^3.3.0",
"@databases/pg": "^1.1.1",
"@network-utils/arp-lookup": "^1.2.1",
"@types/cookie-parser": "^1.4.2",
"@types/http-errors": "^1.6.2",
"@types/lodash": "^4.14.144",
"@types/morgan": "^1.7.37",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"express": "~4.16.1",
"hbs": "~4.0.4",
"http-errors": "~1.6.3",
"lodash": "^4.17.15",
"log-timestamp": "^0.3.0",
"morgan": "~1.9.1",
"net-ping": "^1.2.3",
"rxjs": "^6.5.3"
},
"devDependencies": {
"@types/express": "^4.17.2",
"@types/fs-extra": "^8.0.1",
"@types/node": "^12.12.5",
"@types/pg": "^7.11.2",
"@types/shelljs": "^0.8.6",
"dotenv": "^8.2.0",
"fs-extra": "^8.1.0",
"nodemon": "^1.19.4",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.0",
"shelljs": "^0.8.3",
"ts-node": "^8.4.1",
"ts-node-dev": "^1.0.0-pre.44",
"tslint": "^5.20.0",
"typescript": "^3.6.4"
}
}