-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 861 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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"startDev": "nodemon app.ts",
"start": "ts-node app.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^4.16.2",
"cookie-session": "^2.0.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-session": "^1.17.3",
"passport": "^0.5.3",
"passport-google-oauth20": "^2.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/node": "^20.3.3",
"@types/passport": "^1.0.12",
"@types/passport-google-oauth20": "^2.0.11",
"dotenv": "^16.3.1",
"jest": "^29.6.0",
"nodemon": "^2.0.22",
"prisma": "^4.16.2",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}