-
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) · 960 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 960 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": "jwt-nodejs",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "vitest --project unit-tests",
"test:e2e": "vitest --project e2e-tests",
"dev": "tsx watch src/index.ts",
"coverage": "vitest run --coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.8",
"@types/node": "^22.13.2",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"@vitest/coverage-v8": "^3.0.6",
"dotenv": "^16.4.7",
"eslint": "^8.54.0",
"prisma": "^6.3.1",
"supertest": "^7.0.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^3.0.6"
},
"dependencies": {
"@prisma/client": "6.3.1",
"bcryptjs": "^3.0.0",
"express": "^4.21.2",
"jsonwebtoken": "^9.0.2",
"zod": "^3.24.2"
}
}