-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 835 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
{
"name": "total-steam-price",
"version": "0.0.1",
"description": "Show total price of all games on the Steam store",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "nodemon index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/magn0053/total-steam-price.git"
},
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"ejs": "^3.1.5",
"express": "^4.17.1",
"fetch": "^1.1.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.6.0",
"mongoose": "^5.10.0",
"mongoose-unique-validator": "^2.0.3"
},
"author": "Magn0053",
"license": "ISC",
"bugs": {
"url": "https://github.com/magn0053/total-steam-price/issues"
},
"homepage": "https://github.com/magn0053/total-steam-price#readme",
"devDependencies": {
"nodemon": "^2.0.4"
}
}