-
Notifications
You must be signed in to change notification settings - Fork 473
/
package.json
38 lines (38 loc) · 1.01 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
{
"name": "study-saturday-week-3",
"version": "1.0.0",
"description": "fun w express, sequelize, and react!",
"main": "index.js",
"scripts": {
"start": "webpack -w --mode development & nodemon app.js",
"build": "webpack --mode production",
"build-watch": "webpack -w --mode development",
"seed": "node seed.js"
},
"author": "myself",
"license": "ISC",
"dependencies": {
"@babel/runtime-corejs3": "^7.12.5",
"axios": "^0.21.1",
"body-parser": "^1.18.2",
"core-js": "^3.8.3",
"express": "^4.16.2",
"morgan": "^1.9.0",
"pg": "^8.5.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"regenerator-runtime": "^0.13.7",
"sequelize": "^6.4.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"babel-loader": "^8.2.2",
"faker": "^5.1.0",
"nodemon": "^2.0.7",
"webpack": "^5.16.0",
"webpack-cli": "^4.4.0"
}
}