-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.25 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.25 KB
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": "cue-server",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./dist/bin/www.js",
"dev": "ts-node ./bin/www.ts",
"dev:hot": "nodemon --exec \"npm run dev\" --watch . --ext ts",
"build": "tsc",
"backup": "cp ./database/cue.db ./backups/cue-$(date +%Y-%m-%d-%H-%M-%S).db"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"bootstrap-icons": "^1.11.3",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^16.4.4",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"http-errors": "~1.6.3",
"jet-validators": "^1.4.3",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.1.0",
"morgan": "^1.10.1",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.19",
"@types/debug": "^4.1.12",
"@types/express": "^5.0.3",
"@types/jsonwebtoken": "^9.0.10",
"@types/morgan": "^1.9.10",
"@types/node": "^24.3.1",
"nodemon": "^3.1.10",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
}
}