-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.16 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
{
"name": "note-ts-express-auth-email-clean-architecture",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "tsnd --respawn --clear src/app.ts",
"build": "rimraf ./dist && prisma generate && tsc",
"start": "npm run build && node dist/app.js",
"seed": "ts-node src/scripts/seed.ts",
"postinstall": "prisma generate"
},
"keywords": [],
"author": "",
"license": "MIT",
"description": "",
"dependencies": {
"@prisma/client": "^6.8.1",
"axios": "^1.9.0",
"bcryptjs": "^3.0.2",
"cloudinary": "^2.6.1",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"env-var": "^7.5.0",
"express": "^4.21.2",
"jsonwebtoken": "^9.0.2",
"nodemailer": "^7.0.2",
"socket.io": "^4.8.1",
"uuid": "^11.1.0",
"zod": "^3.24.3"
},
"devDependencies": {
"@types/cors": "^2.8.18",
"@types/express": "^4.17.18",
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^22.15.2",
"@types/nodemailer": "^6.4.17",
"@types/pg": "^8.15.0",
"prisma": "^6.8.1",
"rimraf": "^6.0.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.3"
}
}