-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 1.27 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
40
41
{
"name": "shake_it_up",
"version": "1.0.0",
"description": "an application that allows users to make customized cocktails, search cocktails and/or ingredients, and discover about base spirits.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node app.js",
"server": "nodemon app.js",
"debug": "node --inspect app.js",
"frontend-install": "npm install --prefix frontend",
"frontend": "npm start --prefix frontend",
"dev": "concurrently \"npm run server\" \"npm run frontend\"",
"heroku-postbuild": "npm install --prefix frontend && npm run build --prefix frontend"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BenjaminT88/shake_it_up.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/BenjaminT88/shake_it_up/issues"
},
"homepage": "https://github.com/BenjaminT88/shake_it_up#readme",
"dependencies": {
"body-parser": "^1.19.0",
"concurrently": "^5.2.0",
"connect": "^3.7.0",
"express": "^4.17.1",
"https": "^1.0.0",
"mongoose": "^5.9.1",
"react-redux": "^7.1.3",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"nodemon": "^1.19.4"
}
}