-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.93 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.93 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "authentication-authorization-system",
"version": "1.0.0",
"description": "Authentication verifies a user's identity. Authorization gives the user the right level of access to system resources.",
"main": "dist/server.js",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"dev": "ts-node-dev --respawn --transpile-only src/server.ts",
"test": "jest",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/dinhthi12/authentication-authorization-system.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dinhthi12/authentication-authorization-system/issues"
},
"homepage": "https://github.com/dinhthi12/authentication-authorization-system#readme",
"dependencies": {
"@prisma/client": "^5.0.0",
"bcrypt": "^5.1.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"debug": "^4.4.3",
"dotenv": "^16.0.0",
"express": "^4.18.2",
"express-session": "^1.18.2",
"ioredis": "^5.8.1",
"jsonwebtoken": "^9.0.0",
"passport": "^0.6.0",
"passport-google-oauth20": "^2.0.0",
"uuid": "^13.0.0",
"zod": "^4.1.12"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.9",
"@types/cors": "^2.8.19",
"@types/debug": "^4.1.12",
"@types/express": "^4.17.13",
"@types/express-session": "^1.18.2",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20.0.0",
"@types/passport": "^1.0.8",
"@types/passport-google-oauth20": "^2.0.16",
"@types/supertest": "^6.0.3",
"jest": "^30.2.0",
"prettier": "^3.6.2",
"prisma": "^5.0.0",
"supertest": "^7.1.4",
"ts-jest": "^29.4.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.0"
}
}