-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.67 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "boox",
"version": "1.0.0",
"description": "Book mixtapes",
"main": "server/index.js",
"engines": {
"node": "6.11.0"
},
"scripts": {
"start:dev": "npm-run-all --parallel watch:server watch:build",
"watch:build": "webpack --env=dev -d --watch",
"watch:server": "nodemon server --exec babel-node",
"build": "NODE_ENV=production webpack --env=prod --progress --colors",
"heroku-postbuild": "npm run build",
"start": "node server"
},
"author": "Kate Ray",
"license": "ISC",
"dependencies": {
"airbrake-js": "^0.9.0",
"babel-cli": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.5.1",
"babel-preset-react": "^6.24.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.17.2",
"cookie-parser": "^1.4.3",
"cookie-session": "^2.0.0-beta.2",
"css-loader": "^0.28.4",
"express": "^4.15.3",
"express-session": "^1.15.3",
"extract-text-webpack-plugin": "^2.1.0",
"heroku-ssl-redirect": "0.0.4",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.4",
"node-sass": "^4.5.3",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"pg": "^6.2.3",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-redux": "^5.0.5",
"react-router-dom": "^4.1.1",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"sass-loader": "^6.0.5",
"sequelize": "^3.30.4",
"sequelize-cli": "^2.7.0",
"sortablejs": "^1.6.0",
"style-loader": "^0.18.1",
"webpack": "^2.6.1",
"webpack-manifest-plugin": "^1.1.0"
},
"devDependencies": {
"nodemon": "^1.11.0",
"npm-run-all": "^4.0.2",
"repl": "^0.1.3"
}
}