-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
55 lines (55 loc) · 1.46 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
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"homepage": "http://localhost:8080",
"proxy": "http://localhost:8080",
"dependencies": {
"@material-ui/core": "^3.9.2",
"@material-ui/icons": "^3.0.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"bootstrap": "^4.3.1",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"express": "^4.16.4",
"express-session": "^1.15.6",
"jsonwebtoken": "^8.5.0",
"morgan": "^1.9.1",
"nodemon": "^1.18.10",
"passport": "^0.4.0",
"pg": "6.1.0",
"pg-hstore": "^2.3.2",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-redux": "^6.0.1",
"react-router-dom": "^4.3.1",
"react-router-redux": "^4.0.8",
"react-scripts": "2.1.8",
"redux": "^4.0.1",
"redux-auth-wrapper": "^2.1.0",
"redux-devtools-extension": "^2.13.8",
"redux-logger": "^3.0.6",
"redux-saga": "^1.0.2",
"seamless-immutable": "^7.1.4",
"sequelize": "^5.1.0",
"sequelize-cli": "^6.2.0"
},
"scripts": {
"start": "npm run server & npm run client",
"server": "nodemon ./bin/www -w server -e html,js,scss --ignore build",
"client": "react-scripts start",
"build": "react-scripts build",
"start:dev": "./node_modules/.bin/nodemon ./bin/www -w app.js -w server",
"migrate": "sequelize db:migrate"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}