-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
35 lines (35 loc) · 870 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": "best-overwatch-api",
"version": "1.0.0",
"description": "An api for Overwatch heroes and eventually individual player stats.",
"main": "server.js",
"scripts": {
"start": "node server.js",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/timomak/Overwatch-API.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/timomak/Overwatch-API/issues"
},
"homepage": "https://github.com/timomak/Overwatch-API#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.4",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"jsonwebtoken": "^8.5.0",
"mongoose": "^5.4.16",
"overwatch-api": "^0.7.4"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.2.1",
"mocha": "^6.0.2"
}
}