-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 938 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 938 Bytes
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": "bitehack",
"version": "1.0.0",
"description": "",
"main": "./src/app.ts",
"scripts": {
"start-prod": "DEBUG=express:* & NODE_ENV=prod nodemon ./src/app.js",
"prestart": "npx prisma generate && npx prisma migrate dev --name init",
"start": "DEBUG=express:* & nodemon -L ./src/app.js"
},
"type": "module",
"license": "LGPL-2.0",
"dependencies": {
"@prisma/client": "4.8.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cross-fetch": "^3.1.5",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"express-session": "^1.17.3",
"googleapis": "^110.0.0",
"jsonwebtoken": "^9.0.0",
"ms": "^2.1.3",
"passport": "^0.6.0",
"passport-google-oauth20": "^2.0.0",
"redis": "^4.5.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"morgan": "^1.10.0",
"nodemon": "^2.0.20",
"prisma": "4.8.1"
}
}