-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 761 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 761 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
{
"name": "nodeserver",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "vitest",
"dev": "ts-node-dev --exit-child --transpile-only --ignore-watch node_modules src/index.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.7.0",
"bcrypt": "^5.1.1",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"jest": "^29.7.0",
"jsonwebtoken": "^9.0.2",
"vitest": "^1.2.2",
"vitest-mock-extended": "^1.3.1"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/jsonwebtoken": "^9.0.5",
"prisma": "^5.7.0",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
}
}