-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 819 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 819 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
{
"name": "task-manager-pro",
"version": "1.0.0",
"description": "A modern, full-stack task management application",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:studio": "prisma studio"
},
"keywords": [
"task-manager",
"productivity",
"full-stack",
"nodejs",
"express"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"@prisma/client": "^5.7.1",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"express": "^4.21.2",
"express-rate-limit": "^7.1.5",
"helmet": "^7.1.0",
"mysql2": "^3.6.5"
},
"devDependencies": {
"@tsconfig/node16": "^16.1.5",
"nodemon": "^3.1.11",
"prisma": "^5.7.1"
}
}