-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.05 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
{
"name": "goodluckhavecheese",
"version": "1.0.0",
"description": "Pet project for tracking how reliable it is to predict cheese based on if an opponent glhf's",
"main": "index.js",
"proxy": "http://localhost:3000",
"scripts": {
"build": "cd client && npm run build",
"install-client": "cd client && npm install",
"heroku-postbuild": "npm run install-client && npm run build",
"server": "nodemon server/index.js",
"develop": "concurrently --kill-others-on-fail \"npm run server\" \"npm run start --prefix client\"",
"start": "concurrently --kill-others-on-fail \"npm run server\" \"npm run start --prefix client\"",
"test": "jest",
"dev": "nodemon index.js"
},
"author": "Seth Marcus",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.2",
"concurrently": "^5.3.0",
"cors": "^2.8.5",
"express": "^4.17.3",
"express-validator": "^6.14.0",
"mongodb": "^4.4.0",
"nodemon": "^2.0.15",
"path": "^0.12.7",
"react-scripts": "^5.0.0"
},
"devDependencies": {
"jest": "^27.5.1"
}
}