-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.03 KB
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": "brewskiMern",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"server": "node server.js",
"client": "node scripts/start-client.js",
"start": "concurrently \"nodemon server.js\" \"npm run client\"",
"build": "node scripts/build.js",
"seed": "node scripts/seedDB.js",
"test": "echo \"Error: no test specified\" && exit 1",
"installDeps": "yarn && cd client && yarn"
},
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^3.5.0",
"nodemon": "^1.11.0"
},
"dependencies": {
"axios": "^0.18.1",
"body-parser": "^1.17.2",
"brewerydb-node": "0.0.1",
"dotenv": "^4.0.0",
"express": "^4.15.4",
"google-auth-library": "^0.12.0",
"isomorphic-fetch": "^2.2.1",
"method-override": "^2.3.10",
"mysql2": "^1.5.1",
"node-cloud-vision-api": "^0.2.0",
"path": "^0.12.7",
"react-router-dom": "^4.1.2",
"request": "^2.83.0",
"sequelize": "^5.3.0",
"sequelize-cli": "^3.2.0",
"spelling": "^2.0.0"
}
}