-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
240 lines (240 loc) · 7.07 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
{
"name": "react-boilerplate",
"version": "3.0.0",
"description": "A highly scalable, offline-first foundation with the best DX and a focus on performance and best practices",
"repository": {
"type": "git",
"url": "git://github.com/mxstbr/react-boilerplate.git"
},
"engines": {
"npm": ">=3"
},
"author": "Max Stoiber",
"license": "MIT",
"scripts": {
"analyze": "node ./internals/scripts/analyze.js",
"npmcheckversion": "node ./internals/scripts/npmcheckversion.js",
"preinstall": "npm run npmcheckversion",
"postinstall": "npm run build:dll",
"prebuild": "npm run build:clean",
"build": "cross-env NODE_ENV=production webpack --config internals/webpack/webpack.prod.babel.js --color -p",
"build:clean": "rimraf ./build/*",
"build:dll": "node ./internals/scripts/dependencies.js",
"start:dev": "cross-env NODE_ENV=development node server",
"start:tunnel": "cross-env NODE_ENV=development ENABLE_TUNNEL=true node server",
"start:production": "npm run build && npm run start",
"start": "NODE_ENV=production node server",
"pagespeed": "node ./internals/scripts/pagespeed.js",
"presetup": "npm i chalk",
"setup": "node ./internals/scripts/setup.js",
"postsetup": "npm run build:dll",
"clean": "shjs ./internals/scripts/clean.js",
"generate": "plop --plopfile internals/generators/index.js",
"lint": "npm run lint:js && npm run lint:css",
"lint:eslint": "eslint --ignore-path .gitignore --ignore-pattern internals/scripts",
"lint:js": "npm run lint:eslint -- . ",
"lint:css": "stylelint ./app/**/*.css",
"lint:staged": "lint-staged",
"pretest": "npm run lint",
"test": "cross-env NODE_ENV=test karma start internals/testing/karma.conf.js --single-run",
"test:watch": "npm run test -- --auto-watch --no-single-run",
"test:firefox": "npm run test -- --browsers Firefox",
"test:safari": "npm run test -- --browsers Safari",
"test:ie": "npm run test -- --browsers IE",
"coveralls": "cat ./coverage/lcov/lcov.info | coveralls"
},
"lint-staged": {
"lint:eslint": "*.js",
"stylelint": "*.css"
},
"pre-commit": "lint:staged",
"babel": {
"presets": [
"es2015-webpack",
"react",
"stage-0"
],
"env": {
"production": {
"only": [
"app"
],
"plugins": [
"transform-react-remove-prop-types",
"transform-react-constant-elements",
"transform-react-inline-elements"
]
}
}
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "airbnb",
"env": {
"browser": true,
"node": true,
"mocha": true
},
"rules": {
"max-len": 0
},
"settings": {
"import/resolver": {
"webpack": {
"config": "./internals/webpack/webpack.test.babel.js"
}
}
}
},
"stylelint": {
"extends": "stylelint-config-standard",
"rules": {
"color-hex-case": "upper",
"string-quotes": "single",
"font-family-name-quotes": "always-where-recommended",
"selector-pseudo-class-no-unknown": [
true,
{
"ignorePseudoClasses": [
"global"
]
}
],
"indentation": 2
}
},
"dllPlugin": {
"path": "node_modules/react-boilerplate-dlls",
"exclude": [
"chalk",
"compression",
"cross-env",
"express",
"ip",
"minimist",
"sanitize.css"
],
"include": [
"core-js",
"lodash",
"eventsource-polyfill"
]
},
"dependencies": {
"babel-polyfill": "^6.7.4",
"body-parser": "1.15.2",
"btoa": "^1.1.2",
"chalk": "^1.1.3",
"compression": "^1.6.1",
"etherscan-api": "^4.0.0",
"express": "^4.13.4",
"fetch-api": "0.0.2",
"fontfaceobserver": "^1.7.1",
"history": "^2.1.0",
"immutable": "^3.8.1",
"ip": "^1.1.2",
"jquery": "^3.1.1",
"material-ui": "^0.16.3",
"minimist": "^1.2.0",
"moment": "^2.16.0",
"mysql": "^2.17.1",
"mongodb": "^2.2.6",
"node-fetch": "^2.2.0",
"pwd": "^1.1.0",
"react": "^15.0.1",
"react-cookie": "^0.4.8",
"react-dom": "^15.0.1",
"react-facebook-login": "^3.4.3",
"react-letter-avatar": "^1.0.2",
"react-redux": "^4.4.5",
"react-router": "^2.3.0",
"react-router-redux": "^4.0.4",
"react-router-scroll": "^0.2.0",
"react-tap-event-plugin": "^2.0.0",
"react-window-resize-listener": "^1.0.0",
"redux": "^3.5.2",
"redux-immutable": "^3.0.6",
"redux-saga": "^0.10.0",
"request": "^2.75.0",
"reselect": "^2.5.1",
"sanitize.css": "^3.3.0",
"stripe": "^4.4.0",
"web3-eth-accounts": "^1.0.0-beta.27",
"whatwg-fetch": "^1.0.0"
},
"devDependencies": {
"babel-core": "6.13.0",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-react-constant-elements": "^6.8.0",
"babel-plugin-transform-react-inline-elements": "^6.8.0",
"babel-plugin-transform-react-remove-prop-types": "^0.2.7",
"babel-preset-es2015": "6.13.0",
"babel-preset-es2015-webpack": "6.4.2",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"chai-enzyme": "^0.4.2",
"cheerio": "^0.20.0",
"coveralls": "^2.11.9",
"cross-env": "^1.0.7",
"css-loader": "^0.23.1",
"enzyme": "^2.2.0",
"eslint": "^2.10.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-import-resolver-webpack": "^0.2.4",
"eslint-plugin-import": "^1.8.0",
"eslint-plugin-jsx-a11y": "^1.2.0",
"eslint-plugin-react": "^5.1.1",
"eventsource-polyfill": "^0.9.6",
"expect": "^1.18.0",
"expect-jsx": "^2.5.1",
"exports-loader": "^0.6.3",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"html-loader": "^0.4.3",
"html-webpack-plugin": "^2.21.0",
"image-webpack-loader": "^4.5.0",
"imports-loader": "^0.6.5",
"ip": "^1.1.2",
"isparta": "^4.0.0",
"isparta-loader": "^2.0.0",
"json-loader": "^0.5.4",
"karma": "^0.13.22",
"karma-chrome-launcher": "^1.0.1",
"karma-coverage": "^1.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^1.0.1",
"karma-mocha-reporter": "^2.0.3",
"karma-safari-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"lint-staged": "^1.0.1",
"lodash": "^4.13.1",
"minimist": "^1.2.0",
"mocha": "^2.4.5",
"ngrok": "2.1.8",
"null-loader": "^0.1.1",
"offline-plugin": "^3.2.0",
"plop": "^1.5.0",
"postcss-cssnext": "^2.5.2",
"postcss-focus": "^1.0.0",
"postcss-loader": "^0.9.1",
"postcss-reporter": "^1.3.3",
"pre-commit": "^1.1.3",
"psi": "^2.0.3",
"rimraf": "^2.5.2",
"shelljs": "^0.7.0",
"sinon": "^2.0.0-pre",
"style-loader": "^0.13.1",
"stylelint": "^6.3.3",
"stylelint-config-standard": "^8.0.0",
"url-loader": "^0.5.7",
"webpack": "2.1.0-beta.13",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0"
}
}