-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 980 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
36
37
{
"name": "my-video-game-collection",
"version": "1.0.0",
"description": "A web application which allows users to showcase their video game collections.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"watch": "nodemon index.js",
"test": "jest --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eerojala/My-video-game-collection.git"
},
"author": "Eero Ojala",
"license": "MIT",
"bugs": {
"url": "https://github.com/eerojala/My-video-game-collection/issues"
},
"homepage": "https://github.com/eerojala/My-video-game-collection#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.4",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"hapi": "^17.3.1",
"jsonwebtoken": "^8.2.1",
"mongoose": "^5.10.18",
"npm": "^6.14.9",
"supertest": "^3.0.0"
},
"devDependencies": {
"cross-env": "^5.1.4",
"jest": "^22.4.3",
"nodemon": "^1.17.2"
}
}