-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.22 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.22 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
{
"name": "bbmodules-backend",
"version": "0.1.0",
"description": "A place to store modules for the BattleBit Modular API",
"main": "index.mjs",
"type": "module",
"scripts": {
"test": "nodemon",
"postinstall": "prisma generate",
"prisma": "prisma"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BattleBit-Community-Servers/BBModules-Backend.git"
},
"author": "Mevng / goat, DasIschBims / Bims, RainOrigami",
"license": "WTFPL",
"bugs": {
"url": "https://github.com/BattleBit-Community-Servers/BBModules-Backend/issues"
},
"homepage": "https://github.com/BattleBit-Community-Servers/BBModules-Backend#readme",
"dependencies": {
"@prisma/client": "^5.2.0",
"axios": "^1.5.0",
"chalk": "^5.3.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-fileupload": "^1.4.0",
"express-form-data": "^2.0.22",
"express-session": "^1.17.3",
"passport": "^0.6.0",
"passport-discord": "^0.1.4",
"prisma": "^5.2.0",
"rimraf": "^5.0.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0"
},
"devDependencies": {
"@types/node": "^20.6.2",
"nodemon": "^3.0.1"
}
}