-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.84 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.84 KB
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
78
79
80
81
82
83
84
85
86
87
{
"name": "react-boilerpalte",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rimraf public/assets stats.json",
"build": "npm run clean && webpack --config webpack/config.prod.js -p --json > stats.json",
"start": "BABEL_DISABLE_CACHE=1 node modules/server",
"start:dev": "NODE_ENV=development npm start",
"start:prod": "NODE_ENV=production npm start",
"heroku-postbuild": "npm run build"
},
"author": "",
"license": "MIT",
"dependencies": {
"async-props": "^0.3.2",
"babel-polyfill": "^6.9.1",
"body-parser": "^1.15.1",
"config": "^1.21.0",
"connect-mongo": "^1.2.0",
"cookie-parser": "^1.4.3",
"express": "^4.13.4",
"express-graphql": "^0.5.3",
"express-handlebars": "^3.0.0",
"express-session": "^1.13.0",
"graphql": "^0.6.0",
"http-client": "^4.0.1",
"http-client-cookie-jar": "^0.1.0",
"invariant": "^2.2.1",
"isomorphic-fetch": "^2.2.1",
"mongoose": "^4.5.0",
"mongoose-paginate": "^5.0.0",
"normalizr": "^2.1.0",
"passport": "^0.3.2",
"passport-github": "^1.1.0",
"query-string": "^4.2.2",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-redux": "^4.4.5",
"react-router": "^3.0.0-alpha.1",
"react-router-redux": "^4.0.4",
"redux": "^3.5.2",
"redux-entities": "0.0.4",
"redux-thunk": "^2.1.0",
"serialize-javascript": "^1.2.0",
"serve-favicon": "^2.3.0",
"tough-cookie": "^2.2.2"
},
"devDependencies": {
"autoprefixer": "^6.3.6",
"babel-core": "^6.9.0",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-module-alias": "^1.4.0",
"babel-plugin-remove-webpack": "^1.1.0",
"babel-plugin-system-import-transformer": "^2.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-react-constant-elements": "^6.9.1",
"babel-plugin-transform-react-inline-elements": "^6.8.0",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-plugin-webpack-alias": "^1.3.1",
"babel-plugin-webpack-loaders": "^0.5.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2015-webpack": "^6.4.1",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"css-loader": "^0.23.1",
"errorhandler": "^1.4.3",
"eslint": "^2.13.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-import-resolver-webpack": "^0.3.0",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "^5.2.2",
"extract-text-webpack-plugin": "^1.0.1",
"postcss-loader": "^0.9.1",
"redux-logger": "^2.6.1",
"rimraf": "^2.5.2",
"style-loader": "^0.13.1",
"webpack": "^2.1.0-beta.7",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0"
}
}