-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 867 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
{
"name": "musicashramserver",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node build/index.js",
"build": "tsc -p .",
"dev": "nodemon src/index.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^3.6.0",
"express": "^4.17.1",
"helmet": "^4.6.0",
"pg": "^8.7.1",
"bcrypt": "^5.0.1",
"prisma": "^3.6.0"
},
"prisma": {
"schema": "src/prisma/schema.prisma"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/bcrypt": "^5.0.0",
"@types/jsonwebtoken": "^8.5.6",
"@types/node": "^16.11.11",
"@types/validator": "^13.7.0",
"jsonwebtoken": "^8.5.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"nodemon": "^2.0.15",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
}
}