-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 912 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
37
38
39
{
"name": "example-api",
"version": "1.0.0",
"author": "iXD Labs",
"private": true,
"scripts": {
"prepare": "husky install",
"build": "npx tsc",
"start": "node dist/src/index.js",
"dev": "nodemon src/index.ts"
},
"dependencies": {
"@prisma/client": "^3.12.0",
"bcrypt": "^5.0.1",
"body-parser": "^1.20.0",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"passport": "^0.5.2",
"passport-jwt": "^4.0.0",
"sqlite3": "^5.0.3"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.13",
"@types/node": "^17.0.23",
"@types/passport": "^1.0.7",
"@types/passport-jwt": "^3.0.6",
"husky": "^7.0.4",
"nodemon": "^2.0.15",
"prisma": "^4.3.1",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
}
}