-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.34 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.34 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
{
"name": "woop",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "bun --watch src/index.ts",
"build": "tsc",
"start": "bun src/index.ts",
"db:migrate": "prisma migrate dev",
"db:generate": "prisma generate",
"test": "bun test"
},
"keywords": ["typescript", "authentication", "jwt", "auth"],
"author": "Virus Creative",
"license": "ISC",
"type": "module",
"dependencies": {
"@prisma/adapter-pg": "^7.3.0",
"@prisma/client": "^7.3.0",
"bcrypt": "^6.0.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.6",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"express-rate-limit": "^8.2.1",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.3",
"nodemailer": "^7.0.12",
"pg": "^8.17.2",
"toml": "^3.0.0",
"uuid": "^13.0.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bcrypt": "^6.0.0",
"@types/bun": "^1.3.6",
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/express-rate-limit": "^6.0.2",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.0.10",
"@types/nodemailer": "^7.0.9",
"@types/pg": "^8.16.0",
"@types/uuid": "^10.0.0",
"nodemon": "^3.1.11",
"prisma": "^7.3.0",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}