-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 982 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
{
"name": "pour-decisions",
"version": "1.0.0",
"description": "An app to discover and create new drinks!",
"main": "/backend/server.js",
"scripts": {
"start": "cd ./backend/ && npm install && node server.js",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false cd ./frontend/ && npm install && npm run build",
"backend": "cd ./backend/ && nodemon server.js",
"frontend": "cd ./frontend/ && npm run start",
"backend-test": "cd ./backend/ && cucumber-js test",
"frontend-test": "cd ./frontend/ && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ballofsunshine/PourDecisions.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ballofsunshine/PourDecisions/issues"
},
"homepage": "https://github.com/ballofsunshine/PourDecisions#readme",
"dependencies": {
"express": "^4.17.3",
"mongoose": "^6.2.1",
"npm": "^8.6.0",
"react-router-dom": "^6.2.1"
}
}