-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (52 loc) · 1.47 KB
/
package.json
File metadata and controls
53 lines (52 loc) · 1.47 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "planvas",
"type": "module",
"version": "1.0.0",
"description": "Planvas 백엔드",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "prisma generate && prisma migrate deploy && node src/index.js",
"dev": "nodemon --exec \"prisma generate && node src/index.js\"",
"postinstall": "prisma generate",
"seed:activity": "node src/scripts/seed-activity.js",
"seed:interest": "node src/scripts/seed-interest.js",
"import:contests": "node src/scripts/import-contests.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Planvas-Node/Backend.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Planvas-Node/Backend/issues"
},
"homepage": "https://github.com/Planvas-Node/Backend#readme",
"dependencies": {
"@prisma/client": "^6.19.2",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"google-auth-library": "^10.5.0",
"googleapis": "^170.1.0",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^9.0.3",
"luxon": "^3.7.2",
"node-cron": "^4.2.1",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.1",
"prisma": "^6.19.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"nodemon": "^3.1.11"
},
"prisma": {
"seed": "node prisma/seed.js",
"nodemon": "^3.1.11",
"prisma": "^6.19.2"
}
}