-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.17 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
{
"name": "shoppies",
"version": "1.0.0",
"description": "Website for movie nominations",
"main": "index.js",
"scripts": {
"start": "node server",
"start-dev": "NODE_ENV='development' npm run build-client-watch & NODE_ENV='development' npm run start-server",
"start-server": "nodemon server -e html,js,scss --ignore public --ignore client",
"build-client-watch": "webpack -w",
"deploy": "script/deploy"
},
"author": "Erick Canals",
"license": "ISC",
"dependencies": {
"@material-ui/core": "^4.11.0",
"axios": "^0.20.0",
"compression": "^1.7.4",
"connect-session-sequelize": "^7.0.1",
"express": "^4.17.1",
"express-session": "^1.17.1",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"pg": "^8.3.2",
"pg-hstore": "^2.3.3",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"sequelize": "^6.3.4"
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/polyfill": "^7.10.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
}
}