-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 790 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 790 Bytes
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
{
"name": "dbapp",
"version": "0.1.0",
"private": true,
"proxy": "http://localhost:8080",
"dependencies": {
"axios": "^0.17.1",
"bookshelf": "^0.12.0",
"concurrently": "^3.5.1",
"knex": "^0.14.2",
"pg": "^7.4.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-router-dom": "^4.2.2",
"react-scripts": "1.0.17"
},
"scripts": {
"start": "npm run build; npm run server",
"client": "react-scripts start",
"both": "concurrently \"npm run server\" \"npm run client\"",
"server": "nodemon api/server.js",
"build": "react-scripts build",
"seed": "(cd api && knex migrate:latest && knex seed:run)",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"up": "git push heroku master"
}
}