-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1 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
{
"name": "games-comparison",
"version": "1.0.0",
"description": "App to compare lists of games with frinds. MVP will be Steam only.",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"dev": "concurrently \"nodemon server.js\" \"cd client && npm run start\"",
"install": "cd client && npm install",
"build": "cd client && npm run build",
"heroku-postbuild": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SamSherrill/games-comparison.git"
},
"author": "Sam Sherrill",
"license": "ISC",
"bugs": {
"url": "https://github.com/SamSherrill/games-comparison/issues"
},
"homepage": "https://github.com/SamSherrill/games-comparison#readme",
"devDependencies": {
"concurrently": "^5.3.0",
"nodemon": "^2.0.7"
},
"dependencies": {
"axios": "^0.21.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mysql2": "^2.2.5",
"sequelize": "^6.6.2"
}
}