-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
290 lines (290 loc) · 11.9 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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
{
"name": "@reagentum/front-core",
"version": "1.9.50",
"description": "front-core",
"license": "Apache-2.0",
"author": {
"name": "Andrey \"Kinjeiro\" Kuzmin",
"email": "[email protected]"
},
"contributors": [
],
"repository": {
"type": "git",
"url": "https://github.com/kinjeiro/front-core.git"
},
"homepage": "https://github.com/kinjeiro/front-core",
"//": "// For comments see https://stackoverflow.com/questions/14221579/how-do-i-add-comments-to-package-json-for-npm-install",
"main": "./build-scripts/start.js",
"scripts": {
"----- LOCALHOST -----": "----------",
"start-localhost": "cross-env NODE_ENV=localhost HOT_LOADER=1 CLIENT_SIDE_RENDERING=1 APP_MOCKS=1 USE_MOCKS=1 node ./build-scripts/start.js",
"start-localhost-other-port": "cross-env SERVER_PORT=8082 PROXY_PORT=9092 npm run start-localhost",
"start": "npm run start-localhost",
"----- START DAEMON -----": "----------",
"start-daemon": "pm2 start ./.build/server.js --name front-core",
"stop-daemon": "pm2 stop front-core || echo 'pm2 app not started'",
"start-production-daemon": "cross-env NODE_ENV=production npm run start-daemon",
"----- START -----": "----------",
"start-build": "node ./.build/server.js",
"start-static-build": "cd ./.build && live-server --entry-file=./index.html",
"start-test-contextRoot": "cross-env CONTEXT_ROOT=.build npm run build:development && live-server --entry-file=./.build/index.html",
"start-production": "cross-env NODE_ENV=production npm run start-build",
"start-development": "cross-env NODE_ENV=development npm run start-build",
"start-integration": "cross-env NODE_ENV=integration npm run start-build",
"start-loadtesting": "cross-env NODE_ENV=loadtesting npm run start-build",
"start-prelive": "cross-env NODE_ENV=prelive npm run start-build",
"start-without-SSR": "cross-env CLIENT_SIDE_RENDERING=1 npm run start-localhost",
"start-frontend-server": "node ./build-scripts/start-frontend.js",
"start-backend-server": "node ./build-scripts/start-backend.js",
"----- BUILD -----": "----------",
"build": "cross-env NODE_ENV=production node ./build-scripts/build.js",
"build:development": "cross-env NODE_ENV=development node ./build-scripts/build.js",
"test:build": "npm run build && npm run start-production",
"----- TEST -----": "----------",
"test:client": "cross-env NODE_ENV=test SERVER_PORT=8082 karma start ./test/client/run-client-tests.js",
"test:client:watch": "npm run test:client -- --watch",
"test:server": "cross-env TEST_SKIP_AUTH=1 NODE_ENV=test SERVER_PORT=8081 mocha ./test/server/run-server-tests.js --timeout 10000",
"test:server:watch": "npm run test:server -- --watch",
"test:scripts": "cross-env NODE_ENV=test mocha ./test/scripts/run-scripts-tests.js",
"test:with-auth": "npm run test:scripts && npm run test:server && npm run test:client",
"test": "npm run test:scripts && npm run test:server && npm run test:client",
"----- VERSION -----": "----------",
"generate-dts": "node ./build-scripts/generate-dts.js",
"lint": "./node_modules/.bin/eslint --ext js,jsx .",
"build-docs-md": "documentation build src/** --config docs/api-documentation.yml --format md --output docs/api.md",
"build-docs-html": "documentation build src/** --config docs/api-documentation.yml --format html --output docs/api",
"compile": "npm run update-babelrc && rimraf lib/* -f && babel src --out-dir lib --copy-files --include-dotfiles",
"publish-patch": "npm run release-patch && npm publish --access public",
"publish-patch-r": "git push --follow-tags && npm publish --access public",
"release-patch": "npm version patch -m \"chore(*) patch version: %s\"",
"release-minor": "npm version minor -m \"chore(*) minor version: %s\"",
"release-major": "npm version major -m \"chore(*) major version: %s\"",
"release-prepatch": "npm version prepatch -m \"chore(*) preptch version: %s\"",
"release-prerelease": "npm version prerelease -m \"chore(*) prerelease version: %s\"",
"preversion": "npm run test",
"version": "npm run build-docs-html && npm run build-docs-md && npm run compile && npm run generate-dts && git add -A",
"//comment//": "prepublishOnly - only run before publish",
"postversion": "git push --follow-tags",
"postversion-hg": "hg add package.json && hg commit package.json -m \"front-core new version\" && hg push",
"postversion-git": "git push --follow-tags",
"----- DOCKER -----": "----------",
"docker-build": "sh docker/docker-build.sh",
"docker-push": "sh docker/docker-push.sh",
"docker-test-run": "sh docker/docker-test-run.sh",
"docker-build-test-push": "sh docker/build-test-push-to-devops.sh",
"----- UTILS -----": "----------",
"update-babelrc": "node ./build-scripts/update-babelrc.js",
"sync-work-branch": "sh ./build-scripts/sync-work-branch.sh",
"clear-cashe-and-install": "rm -rf ./node_modules && rm -f package-lock.json && npm cache clean --force && npm install --production",
"minimized:copy": "cpr . minimizedPackage/front-core --delete-first --filter \"^(.git|.idea|.build|.git|build-scripts|lib|minimizedPackage|logs|node_modules|old|src).*\"",
"minimized:libs": "cross-env MINIMIZED=true npm run update-babelrc && babel src --out-dir minimizedPackage/front-core/lib --copy-files --include-dotfiles",
"minimized:scripts": "minify build-scripts --mangle.keepClassName --outDir minimizedPackage/front-core/build-scripts",
"minimized": "npm run minimized:copy && npm run minimized:scripts && npm run minimized:libs"
},
"__deletedDependencies": {
"redux-logger": "git+https://github.com/thiamsantos/redux-logger.git#ddiff"
},
"dependencies": {
"accept-language-parser": "~1.4.0",
"array-from": "~2.1.1",
"array.prototype.fill": "~1.0.1",
"array.prototype.find": "~2.0.0",
"babel-core": "~6.24.1",
"babel-loader": "~7.0.0",
"babel-plugin-add-module-exports": "~0.2.1",
"babel-plugin-module-resolver": "~2.7.1",
"babel-plugin-require-context-hook": "~1.0.0",
"babel-plugin-syntax-dynamic-import": "~6.18.0",
"babel-plugin-transform-class-properties": "~6.24.1",
"babel-plugin-transform-decorators-legacy": "~1.3.4",
"babel-plugin-transform-export-extensions": "~6.22.0",
"babel-plugin-transform-object-rest-spread": "~6.23.0",
"babel-plugin-transform-runtime": "~6.15.0",
"babel-preset-env": "~1.4.0",
"babel-preset-react": "~6.24.1",
"babel-register": "~6.26.0",
"babel-runtime": "~6.20.0",
"bem-cn": "~2.1.3",
"boom": "~4.0.0",
"bundle-loader": "~0.5.6",
"chalk": "~1.1.3",
"classlist-polyfill": "~1.0.3",
"classnames": "~2.2.6",
"compression-webpack-plugin": "~0.3.1",
"config": "github:kinjeiro/node-config",
"cookie": "~0.3.1",
"copy-webpack-plugin": "~3.0.1",
"core-js": "~2.4.1",
"cross-env": "~4.0.0",
"crumb": "~6.0.3",
"css-loader": "~0.23.1",
"ddiff": "~0.1.3",
"deep-assign": "~2.0.0",
"ejs": "~2.5.5",
"ejs-compiled-loader": "~2.1.1",
"es6-map": "~0.1.4",
"es6-object-assign": "~1.0.1",
"es6-promise": "~3.3.1",
"es6-set": "~0.1.4",
"es6-weak-map": "~2.0.1",
"extract-text-webpack-plugin": "~3.0.0",
"fast-json-patch": "~2.0.6",
"file-loader": "~0.8.5",
"file-saver": "~1.3.3",
"git-branch-is": "~2.1.0",
"h2o2": "~6.1.0",
"hapi": "~16.5.0",
"hapi-request-id": "~1.1.0",
"history": "~3.3.0",
"hoek": "~4.2.1",
"html-loader": "~0.5.1",
"html-webpack-plugin": "~3.2.0",
"i18next": "~8.4.2",
"i18next-browser-languagedetector": "~2.0.0",
"i18next-localstorage-cache": "~1.1.1",
"i18next-sync-fs-backend": "~1.0.0",
"i18next-xhr-backend": "~1.4.2",
"ima-babel6-polyfill": "~0.12.0",
"image-webpack-loader": "~3.4.2",
"inert": "~4.0.3",
"less": "~2.7.2",
"less-loader": "~4.0.4",
"lodash": "~4.17.3",
"lodash-decorators": "~4.5.0",
"longjohn": "~0.2.12",
"matches-selector-polyfill": "~1.0.0",
"matchmedia-polyfill": "~0.3.0",
"memoize-bind": "~1.0.3",
"memoize-one": "~5.1.1",
"mime": "~2.3.1",
"moment": "~2.19.3",
"node-noop": "~1.0.0",
"node-sass": "~4.6.0",
"normalize.css": "~8.0.0",
"object-is": "~1.0.1",
"performance-now": "~2.1.0",
"pm2": "~3.2.2",
"postcss": "~5.2.17",
"postcss-bemed": "~1.0.0",
"postcss-cssnext": "~2.11.0",
"postcss-import": "~9.1.0",
"postcss-loader": "~1.3.3",
"postcss-nested": "~1.0.1",
"promise-memoize": "~1.2.1",
"prop-types": "~15.6.0",
"query-string": "~4.3.2",
"raf": "~3.3.0",
"react-addons-css-transition-group": "~15.6.0",
"react-addons-test-utils": "~15.6.0",
"react-css-modules": "~3.7.10",
"react-fast-compare": "~2.0.4",
"react-helmet": "~5.1.3",
"react-hot-loader": "~4.12.18",
"react-i18next": "~4.6.1",
"react-input-mask": "~2.0.4",
"react-redux": "~4.4.1",
"react-responsive": "~4.0.3",
"react-router": "~3.2.0",
"react-router-redux": "~4.0.5",
"react-router-scroll": "~0.4.1",
"react-sticky": "~5.0.5",
"react-truncate": "~2.3.0",
"redbox-react": "~1.3.4",
"redux": "~3.3.1",
"redux-orm": "~0.9.4",
"redux-thunk": "~2.1.0",
"request": "~2.70.0",
"reselect": "~4.0.0",
"resolve-url-loader": "~2.3.0",
"rimraf": "~2.6.2",
"route-parser": "0.0.5",
"sass-loader": "~6.0.7",
"shallowequal": "~1.1.0",
"ssl-root-cas": "~1.3.1",
"static-site-generator-webpack-plugin": "~3.0.0",
"stream": "0.0.2",
"style-loader": "~0.17.0",
"superagent": "~3.7.0",
"superagent-promise-plugin": "3.2.0",
"tmp": "0.0.33",
"uglifyjs-webpack-plugin": "~1.1.2",
"url-loader": "~0.5.9",
"uuid": "~2.0.3",
"validate.js": "~0.11.1",
"webpack": "~3.5.5",
"whatwg-fetch": "~2.0.4",
"winston": "~2.3.0",
"winston-logstash": "~0.3.0",
"wolfy87-eventemitter": "~5.2.3",
"wreck": "~14.0.2"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"autoprefixer": "~6.3.1",
"awesome-typescript-loader": "~1.0.0",
"babel-cli": "~6.26.0",
"babel-eslint": "~10.0.1",
"babel-minify": "~0.5.0",
"babel-preset-minify": "~0.5.0",
"chai": "~3.5.0",
"chai-as-promised": "~5.3.0",
"chai-dom": "~1.5.0",
"chai-spies": "~0.7.1",
"cpr": "~3.0.1",
"dirty-chai": "~2.0.1",
"documentation": "~6.1.0",
"enzyme": "~3.2.0",
"enzyme-adapter-react-16": "~1.1.1",
"eslint": "~5.13.0",
"eslint-config-airbnb": "~17.1.0",
"eslint-config-standard": "~12.0.0",
"eslint-config-standard-react": "~7.0.2",
"eslint-plugin-babel": "~5.3.0",
"eslint-plugin-import": "~2.16.0",
"eslint-plugin-jsdoc": "~4.1.0",
"eslint-plugin-jsx-a11y": "~6.2.1",
"eslint-plugin-node": "~8.0.1",
"eslint-plugin-promise": "~4.0.1",
"eslint-plugin-react": "~7.12.4",
"eslint-plugin-standard": "~4.0.0",
"git-hooks": "1.0.2",
"glob": "~7.1.2",
"ignore-styles": "~5.0.1",
"isparta-loader": "~2.0.0",
"istanbul": "~0.4.2",
"karma": "~1.7.0",
"karma-chai": "~0.1.0",
"karma-chai-as-promised": "~0.1.2",
"karma-chai-dom": "~1.1.0",
"karma-chai-spies": "~0.1.4",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage": "~1.1.1",
"karma-global-preprocessor": "~0.0.2",
"karma-junit-reporter": "~1.1.0",
"karma-mocha": "~1.1.1",
"karma-mocha-reporter": "~2.2.3",
"karma-sauce-launcher": "~1.1.0",
"karma-sinon": "~1.0.5",
"karma-sourcemap-loader": "~0.3.7",
"karma-webpack": "~2.0.3",
"live-server": "~1.2.0",
"mocha": "~2.4.5",
"react": "~16.12.0",
"react-dom": "~16.12.0",
"react-to-typescript-definitions": "~1.1.0",
"respawn": "~2.3.0",
"sinon": "~4.1.2",
"sinon-chai": "~2.11.0",
"source-map-support": "~0.4.6",
"stylelint": "~7.12.0",
"typescript": "~1.8.10",
"uglify-es": "github:mishoo/UglifyJS2#harmony",
"webpack-dev-server": "~2.7.1",
"yargs": "~9.0.1"
}
}