-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.1 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
{
"name": "expresssqlize",
"version": "1.0.0",
"engines": {
"node": "8.9.4"
},
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"build": "webpack ./public/src/index.js --output ./public/dist/main.js",
"dev": "webpack-dev-server"
},
"author": "",
"license": "ISC",
"dependencies": {
"@material-ui/core": "^1.3.1",
"bcrypt": "^3.0.0",
"body-parser": "^1.18.3",
"express": "^4.16.3",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"pg": "^7.4.3",
"pg-hstore": "^2.3.2",
"react-router-dom": "^4.3.1",
"sequelize": "^4.38.0",
"superagent": "^3.8.3",
"swagger-ui-express": "^3.0.10"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"webpack": "^4.15.1",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4"
}
}