-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 870 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 870 Bytes
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
{
"name": "express1",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "vitest run"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"cors": "^2.8.6",
"dotenv": "^17.4.2",
"better-sqlite3": "^11.9.1",
"bcrypt": "^5.1.1",
"express": "^5.2.1",
"jsonwebtoken": "^9.0.2",
"uuid": "^11.1.0"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/bcrypt": "^5.0.2",
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^5.0.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/supertest": "^6.0.3",
"@types/node": "^25.8.0",
"supertest": "^7.1.4",
"vitest": "^3.2.4",
"tsx": "^4.22.1",
"typescript": "^6.0.3"
}
}