-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 951 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
36
{
"name": "ccms",
"version": "1.0.0",
"main": "dist/index.js",
"repository": "https://github.com/tushar-c23/ccms.git",
"author": "tushar-c23 <tusharc.cse@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "tsnd --respawn --transpile-only --exit-child src/app.ts",
"seed": "ts-node prisma/seed.ts"
},
"dependencies": {
"@prisma/client": "^5.13.0",
"@types/bcrypt": "^5.0.2",
"@types/bcryptjs": "^2.4.6",
"axios": "^1.6.8",
"bcryptjs": "^2.4.3",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"postgres": "^3.4.4",
"typescript": "^5.4.5",
"zod": "^3.23.6"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.12.8",
"@types/nodemailer": "^6.4.15",
"jsonwebtoken": "^9.0.2",
"nodemailer": "^6.9.13",
"nodemon": "^3.1.0",
"prisma": "^5.13.0",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0"
}
}