-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 943 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
32
33
34
35
36
37
38
39
40
{
"name": "static-service",
"version": "1.0.0",
"scripts": {
"start-hot": "nodemon ./bin/www",
"start": "run-p build-ts && node ./bin/www",
"pkg": "pkg . --out-path ./build",
"type-check": "tsc --noEmit -p tsconfig.json --composite false",
"dev-ts": "tsc -w -p .",
"build-ts": "tsc -p ."
},
"dependencies": {
"busboy": "^1.6.0",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"ejs": "^3.1.5",
"express": "^4.18.3",
"express-session": "^1.18.0",
"http-errors": "~1.6.3",
"mongodb": "^3.6.2",
"morgan": "~1.9.1",
"multiparty": "^4.2.3",
"pbkdf2-password": "^1.2.1",
"utf8": "^3.0.0"
},
"devDependencies": {
"@types/node": "^20.11.24",
"nodemon": "^2.0.22",
"npm-run-all": "^4.1.5",
"typescript": "^5.3.3"
},
"bin": "./bin/www",
"pkg": {
"assets": [
"./views/**/*",
"./public/**/*",
"./node_modules/**/*"
]
}
}