forked from Ticklers/Battle-API
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·44 lines (44 loc) · 1.04 KB
/
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
36
37
38
39
40
41
42
43
44
{
"name": "battle-api",
"version": "1.0.0",
"description": "node api for the app",
"main": "server.js",
"scripts": {
"start": "nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Test-Battle/Battle-API.git"
},
"author": "Ishan Gupta",
"license": "MIT",
"bugs": {
"url": "https://github.com/Test-Battle/Battle-API/issues"
},
"homepage": "https://github.com/Test-Battle/Battle-API#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"express": "^4.17.1",
"lodash": "^4.17.15",
"mongoose": "^5.9.10",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"nodemon": "^2.0.3",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"validator": "^13.0.0"
},
"devDependencies": {
"bcryptjs": "^2.4.3",
"express": "^4.17.1",
"lodash": "^4.17.15",
"mongoose": "^5.9.10",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"nodemon": "^2.0.3",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"validator": "^13.0.0"
}
}