-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1 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
{
"name": "sdcp-express",
"version": "0.0.0",
"description": "Express interface for SDCP",
"main": "dist/bin/www.js",
"type": "commonjs",
"private": true,
"scripts": {
"build": "tsc",
"start": "export DEBUG=sdcp-express:* && node dist/bin/www.js",
"dev": "nodemon src/bin/www.ts",
"watch": "tsc -w"
},
"dependencies": {
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"express": "~4.16.1",
"http-errors": "~1.6.3",
"morgan": "~1.9.1",
"pug": "2.0.0-beta11"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/cookie-parser": "^1.4.8",
"@types/debug": "^4.1.12",
"@types/express": "^5.0.0",
"@types/morgan": "^1.9.9",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"eslint": "^9.16.0",
"globals": "^15.13.0",
"nodemon": "^3.1.7",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0"
}
}