-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.45 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "boilermaker",
"version": "1.0.0",
"description": "Some boilerplate code to get you started - get shakin'!",
"engines": {
"node": ">= 7.0.0"
},
"main": "index.js",
"scripts": {
"build-client": "webpack",
"build-client-watch": "webpack -w",
"deploy": "git checkout -b deploy && webpack -p && git add -f public/bundle.js public/bundle.js.map && git commit --allow-empty -m 'Deploying' && git push --force heroku deploy:master && git checkout master && git branch -D deploy",
"start": "node server",
"start-dev": "npm run build-client-watch & npm run start-server",
"start-server": "NODE_ENV='development' nodemon server -e html,js,scss --ignore public",
"test": "NODE_ENV='test' DATABASE_URL='postgres://localhost:5432/boilermaker-test' mocha ./**/*.spec.js --compilers js:babel-register"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.15.3",
"body-parser": "^1.16.1",
"connect-session-sequelize": "^4.1.0",
"express": "^4.14.1",
"express-session": "^1.15.1",
"history": "^4.6.3",
"lodash.mergewith": "^4.6.0",
"material-ui": "^1.0.0-beta.10",
"morgan": "^1.8.1",
"passport": "^0.3.2",
"passport-google-oauth": "^1.0.0",
"pg": "^6.1.2",
"pg-hstore": "^2.3.2",
"prop-types": "^15.5.8",
"react": "^15.6.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.2",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"redux": "^3.6.0",
"redux-logger": "^2.8.1",
"redux-thunk": "^2.2.0",
"sequelize": "^4.3.1"
},
"devDependencies": {
"axios-mock-adapter": "^1.9.0",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^3.5.0",
"css-loader": "^0.26.1",
"enzyme": "^2.8.2",
"eslint": "^4.6.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.3.0",
"file-loader": "^0.11.2",
"mocha": "^3.3.0",
"node-sass": "^4.5.0",
"react-test-renderer": "^15.6.1",
"redux-devtools-extension": "^2.13.2",
"redux-mock-store": "^1.2.3",
"sass-loader": "^6.0.0",
"siege": "^0.2.0",
"style-loader": "^0.13.1",
"supertest": "^3.0.0",
"webpack": "^2.2.1"
}
}