forked from FullstackAcademy/Study-Saturday-Fullstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 940 Bytes
/
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
{
"name": "study-staturday-week-3",
"version": "1.0.0",
"description": "fun w express, sequelize, and react!",
"main": "index.js",
"scripts": {
"start": "webpack -w & nodemon app.js",
"build": "webpack",
"build-watch": "webpack -w",
"seed": "node seed.js"
},
"author": "myself",
"license": "ISC",
"dependencies": {
"axios": "^0.17.1",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"body-parser": "^1.18.2",
"express": "^4.16.2",
"morgan": "^1.9.0",
"nodemon": "^1.14.12",
"pg": "^7.4.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"sequelize": "^4.32.2"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"faker": "^4.1.0",
"webpack": "^3.10.0"
}
}