-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 954 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
{
"main": "dist/app.js",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^17.0.35",
"@types/passport": "^1.0.8",
"@types/passport-local": "^1.0.34",
"passport": "^0.6.0",
"prisma": "^3.14.0",
"ts-node": "^10.8.0",
"tslint": "^6.1.3",
"typescript": "^4.7.2"
},
"dependencies": {
"@prisma/client": "^3.14.0",
"@types/bcrypt": "^5.0.0",
"@types/multer": "^1.4.7",
"bcrypt": "^5.0.1",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-session": "^1.17.3",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.5-lts.1",
"passport-local": "^1.0.0"
},
"scripts": {
"prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
"build": "tsc",
"prestart": "npm run build",
"start": "node .",
"test": "echo \"Error: no test specified\" && exit 1"
}
}