-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 958 Bytes
/
package.json
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
{
"name": "task-management-api",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "ts-node-dev --respawn --transpile-only --exit-child src/server.ts",
"test": "jest",
"db:migrate": "npx prisma migrate dev --name init --create-only && npx prisma generate",
"db:push": "npx prisma db push",
"db:view": "npx prisma studio"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^22.4.0",
"@types/supertest": "^6.0.2",
"jest": "^29.7.0",
"prisma": "^5.18.0",
"supertest": "^7.0.0",
"ts-jest": "^29.2.4",
"ts-node-dev": "^2.0.0",
"typescript": "^5.5.4"
},
"dependencies": {
"@prisma/client": "^5.18.0",
"bcryptjs": "^2.4.3",
"express": "^4.19.2",
"jsonwebtoken": "^9.0.2",
"sqlite3": "^5.1.7",
"uuid": "^10.0.0"
}
}