-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.35 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
{
"name": "ladybird",
"version": "0.1.0",
"proxy": "http://localhost:5000",
"private": true,
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"concurrently": "^4.1.0",
"cookie-session": "^2.0.0-beta.3",
"express": "^4.16.4",
"http-proxy-middleware": "^0.19.1",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"passport-google-oauth20": "^1.0.0",
"pg": "^7.8.0",
"pg-hstore": "^2.3.2",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"react-scripts": "2.1.3",
"react-scrollable-anchor": "^0.6.1",
"sequelize": "^4.42.0"
},
"scripts": {
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"db:init": "sh scripts/createDb.sh",
"db:reset": "node scripts/resetDb.js",
"db:seed": "node scripts/seed.js",
"server": "nodemon server.js",
"dev": "concurrently \"npm run server\" \"react-scripts start\"",
"start": "concurrently \"node server.js\" \"react-scripts start\""
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"nodemon": "^1.18.10"
}
}