-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.18 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
42
43
{
"name": "mandarino-todo-app",
"version": "0.1.0",
"private": true,
"proxy": "http://localhost:5000/",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"client": "yarn start",
"server": "nodemon server.js",
"dev": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\"",
"db:up": "db-migrate up",
"db:down": "db-migrate down",
"db:migrate": "db-migrate create ${name}",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"dependencies": {
"body-parser": "^1.18.2",
"db-migrate-mysql": "^1.1.10",
"dotenv": "^5.0.1",
"history": "^4.7.2",
"knex": "^0.14.5",
"material-ui": "^1.0.0-beta.40",
"material-ui-icons": "^1.0.0-beta.36",
"morgan": "^1.9.0",
"multer": "^1.3.0",
"mysql": "^2.15.0",
"react": "^16.3.1",
"react-dom": "^16.3.1",
"react-redux": "^5.0.7",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.9",
"react-scripts": "1.1.4",
"redux": "^3.7.2"
},
"devDependencies": {
"concurrently": "^3.5.1",
"db-migrate": "^0.10.7",
"nodemon": "^1.17.3"
}
}