-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.14 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
{
"name": "steam_achievement_tracker",
"version": "1.0.0",
"description": "An achievement tracker for steam games",
"main": "server.js",
"engines": {
"node": "16.x"
},
"scripts": {
"setup": "npm install && cd client && npm install && cd ..",
"build-run": "cd achievement-tracker && npm run build && cd .. && node server.js",
"heroku-postbuild": "cd achievement-tracker && npm install && npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hhc97/steam_achievement_tracker.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hhc97/steam_achievement_tracker/issues"
},
"homepage": "https://github.com/hhc97/steam_achievement_tracker#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"connect-mongo": "^4.4.1",
"cors": "^2.8.5",
"dateformat": "^4.5.1",
"express": "^4.17.1",
"express-session": "^1.17.1",
"mongoose": "^5.12.2",
"react-icons": "^4.2.0",
"request": "^2.88.2",
"socket.io": "^4.0.0",
"validator": "^13.5.2"
}
}