-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.22 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
{
"name": "senior-enrichment",
"version": "1.0.0",
"description": "",
"main": "./server/index.js",
"dependencies": {
"axios": "^0.18.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"express": "^4.16.3",
"pg": "^7.4.3",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-notify-toast": "^0.5.0",
"react-redux": "^5.0.7",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"sequelize": "^4.38.0",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0"
},
"babel": {
"presets": [
"env",
"react"
]
},
"devDependencies": {},
"scripts": {
"postinstall": "npm run webpack",
"test": "echo \"Error: no test specified\" && exit 1",
"webpack": "./node_modules/webpack/bin/webpack.js",
"start": "node server/index.js",
"start:dev": "npm run webpack -- --watch --mode=development & DATABASE_URL=postgres://localhost/schools_students nodemon ./server/index.js --ignore src/ --ignore dist"
},
"keywords": [],
"author": "",
"license": "ISC"
}