-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.03 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
{
"name": "live-api-linker",
"version": "0.0.0",
"private": true,
"main": "bin/www.ts",
"scripts": {
"dev": "nodemon",
"build": "sh etc/build.sh",
"start": "export NODE_ENV=production && node -r tsconfig-paths/register ./dist/bin/www.js"
},
"dependencies": {
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^16.0.0",
"ejs": "^3.1.9",
"express": "~4.16.1",
"http-errors": "~1.6.3",
"jade": "~1.11.0",
"log4js": "latest",
"marked": "^5.0.2",
"morgan": "~1.9.1",
"parallel-api-calls": "^0.0.2",
"rimraf": "^3.0.2"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.0",
"@types/cookie-parser": "^1.4.2",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.13",
"@types/http-errors": "^1.8.1",
"@types/marked": "^4.3.0",
"@types/morgan": "^1.9.3",
"@types/node": "^16.10.2",
"nodemon": "^2.0.22",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^4.4.3"
},
"_moduleAliases": {
"@": "dist/src"
}
}