@common-stack/generate-plugin 6.0.2-alpha.1 → 6.0.2-alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/lib/generators/add-backend/files/package.json +114 -114
- package/lib/generators/add-browser-package/files/package.json +47 -47
- package/lib/generators/add-client-package/files/package.json +28 -28
- package/lib/generators/add-core-package/files/package.json +28 -28
- package/lib/generators/add-frontend/templates/package.json +2 -2
- package/lib/generators/add-fullstack/files/package.json +358 -358
- package/lib/generators/add-moleculer/files/package.json +5 -5
- package/lib/generators/add-server-package/files/package.json +3 -3
- package/package.json +3 -3
- package/src/generators/add-fullstack/files/package.json +1 -1
- package/src/generators/add-moleculer/files/package.json +5 -5
- package/lib/generators/add-fullstack/files/tools/html-plugin-template.ejs +0 -28
- package/src/generators/add-fullstack/files/tools/html-plugin-template.ejs +0 -28
|
@@ -1,361 +1,361 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
2
|
+
"name": "sample-stack",
|
|
3
|
+
"version": "0.14.0",
|
|
4
|
+
"private": true,
|
|
5
|
+
"homepage": "https://github.com/cdmbase/fullstack-pro#readme",
|
|
6
|
+
"bugs": {
|
|
7
|
+
"url": "https://github.com/cdmbase/fullstack-pro/issues"
|
|
8
|
+
},
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/cdmbase/fullstack-pro.git"
|
|
12
|
+
},
|
|
13
|
+
"license": "MIT",
|
|
14
|
+
"author": {
|
|
15
|
+
"name": "CDMBase LLC",
|
|
16
|
+
"email": "none@cdmbase.com"
|
|
17
|
+
},
|
|
18
|
+
"workspaces": {
|
|
19
|
+
"packages": [
|
|
20
|
+
"portable-devices/*",
|
|
21
|
+
"packages-modules/**",
|
|
22
|
+
"packages/**",
|
|
23
|
+
"servers/*"
|
|
24
|
+
]
|
|
25
|
+
},
|
|
26
|
+
"scripts": {
|
|
27
|
+
"prebootstrap": "lerna run prepare",
|
|
28
|
+
"bootstrap": "yarn && yarn lerna",
|
|
29
|
+
"postbootstrap": "yarn build",
|
|
30
|
+
"build": "yarn build:packages",
|
|
31
|
+
"build:clean": "lerna exec yarn build:clean",
|
|
32
|
+
"build:packages": "lerna run build --ignore *server --ignore *device --ignore *browser-extension",
|
|
33
|
+
"build:packages:watch": "lerna run build:lib:watch --ignore *server --ignore *device --ignore *browser-extension --stream",
|
|
34
|
+
"check-updates": "lerna exec ./node_modules/.bin/npm-check-updates -- -u",
|
|
35
|
+
"clean": "lerna clean --yes && yarn build:clean && rimraf node_modules",
|
|
36
|
+
"clean:force": "rimraf package-lock.json yarn.lock && yarn clean",
|
|
37
|
+
"clean:install": "yarn clean:force && yarn git:pull && yarn bootstrap",
|
|
38
|
+
"cli": "node tools/cli",
|
|
39
|
+
"commit": "git cz",
|
|
40
|
+
"compile": "lerna exec -- yarn compile",
|
|
41
|
+
"coverage": "jest --coverage",
|
|
42
|
+
"postcoverage": "remap-istanbul --input coverage/coverage.raw.json --type lcovonly --output coverage/lcov.info",
|
|
43
|
+
"db:migrate": "knex migrate:latest --cwd . --knexfile ./servers/backend-server/knexfile.js",
|
|
44
|
+
"db:migrate:rollback": "knex migrate:rollback --cwd . --knexfile ./servers/backend-server/knexfile.js",
|
|
45
|
+
"db:seed": "yarn db:migrate && knex seed:run --cwd . --knexfile ./servers/backend-server/knexfile.js",
|
|
46
|
+
"predevpublish": "if ! git show-ref --verify --quiet refs/remotes/origin/$PUBLISH_BRANCH; then git checkout -b $PUBLISH_BRANCH && git push -u origin $PUBLISH_BRANCH; fi && git fetch origin $PUBLISH_BRANCH && git checkout $PUBLISH_BRANCH && git pull origin $PUBLISH_BRANCH && git merge -s recursive -X theirs $REPOSITORY_BRANCH -m \"merge from $REPOSITORY_BRANCH\" && yarn gitcommit && node tools/update-dependency-version.js && yarn gitcommit",
|
|
47
|
+
"devpublish": "lerna publish prerelease --ignore-scripts --exact",
|
|
48
|
+
"postdevpublish": "git checkout $REPOSITORY_BRANCH",
|
|
49
|
+
"devpublish:auto": "yarn devpublish -- --yes",
|
|
50
|
+
"devpublish:force": "yarn devpublish -- --force-publish=* --yes",
|
|
51
|
+
"devpublish:forceManual": "yarn devpublish -- --force-publish=*",
|
|
52
|
+
"devpublish:push": "yarn predevpublish && git push origin $PUBLISH_BRANCH && yarn postdevpublish",
|
|
53
|
+
"format": "yarn lint --fix",
|
|
54
|
+
"format:md": "yarn lint:md --fix",
|
|
55
|
+
"generateGraphql": "graphql-codegen",
|
|
56
|
+
"generateGraphql:watch": "yarn generateGraphql -- --watch",
|
|
57
|
+
"git:pull": "git pull origin $(git rev-parse --abbrev-ref HEAD)",
|
|
58
|
+
"git:push": "git push origin $(git rev-parse --abbrev-ref HEAD)",
|
|
59
|
+
"gitcommit": "git add -A && git diff --staged --quiet || git commit -am 'auto publish [skip ci] \r\n'",
|
|
60
|
+
"husky-skip": "cross-env HUSKY_SKIP_HOOKS=1",
|
|
61
|
+
"jest": "./node_modules/.bin/jest",
|
|
62
|
+
"lerna": "lerna bootstrap",
|
|
63
|
+
"prelernapublish": "git checkout publish && git pull origin publish && git merge -s recursive -X theirs master -m 'merge from master' && yarn gitcommit && node tools/update-dependency-version.js && yarn gitcommit",
|
|
64
|
+
"lernapublish": "lerna publish --ignore-scripts --cd-version=patch && yarn update-lerna-on-develop",
|
|
65
|
+
"postlernapublish": "git checkout master",
|
|
66
|
+
"lint": "eslint --ext js --ext ts --ext md",
|
|
67
|
+
"lint:ci": "yarn lint . --format junit",
|
|
68
|
+
"lint:fix": "yarn lint -- --fix",
|
|
69
|
+
"lint:md": "markdownlint",
|
|
70
|
+
"lintx": "yarn lint ./packages/**/src/**/*.ts ./packages-modules/**/src/**/*.ts",
|
|
71
|
+
"prepare": "husky",
|
|
72
|
+
"prodBuild": "cross-env NODE_ENV=production babel-node --presets es2015 tools/webpack.run",
|
|
73
|
+
"publish": "yarn lernapublish",
|
|
74
|
+
"publish:auto": "yarn lernapublish --yes",
|
|
75
|
+
"publish:force": "yarn publish:forceManual --yes",
|
|
76
|
+
"publish:forceManual": "yarn lernapublish --force-publish=*",
|
|
77
|
+
"publish:push": "yarn prelernapublish && git push origin publish && yarn postlernapublish",
|
|
78
|
+
"setBranchEnv": "cross-env REPOSITORY_BRANCH=${1:-$REPOSITORY_BRANCH} PUBLISH_BRANCH=${2:-$PUBLISH_BRANCH}",
|
|
79
|
+
"sort-packages": "node tools/sortPackageJson.mjs",
|
|
80
|
+
"start": "cross-env NODE_ENV=development ENV_FILE=../../config/development/dev.env yarn startWeb",
|
|
81
|
+
"start:SSR": "concurrently --names \"BACKEND,FRONTEND\" -c \"bgBlue.bold,bgMagenta.bold\" \"lerna run --scope='*backend-server' start\" \"lerna run --scope='*frontend-server' start:SSR\"",
|
|
82
|
+
"start:devSSR": "concurrently --names \"BACKEND,FRONTEND\" -c \"bgBlue.bold,bgMagenta.bold\" \"lerna run --scope='*backend-server' watch\" \"lerna run --scope='*frontend-server' start:devSSR\"",
|
|
83
|
+
"start:test": "cross-env NODE_ENV=test ENV_FILE=../../config/test/test.env yarn startWeb",
|
|
84
|
+
"startWeb": "lerna run --scope='{*frontend-server,*backend-server}' --parallel watch --stream",
|
|
85
|
+
"test": "cross-env ENV_FILE=config/test/test.env jest",
|
|
86
|
+
"posttest": "yarn lint",
|
|
87
|
+
"test:watch": "npm test -- --watch",
|
|
88
|
+
"pretravis": "yarn compile",
|
|
89
|
+
"travis": "istanbul cover -x \"*.test.js\" _mocha -- --timeout 5000 --full-trace ./test/tests.js",
|
|
90
|
+
"posttravis": "yarn lint",
|
|
91
|
+
"update-lerna-on-develop": "git checkout publish && git pull && cp lerna.json ../lerna-temp.json && git checkout develop && mv ../lerna-temp.json lerna.json && git commit -am 'Update lerna.json' && git push",
|
|
92
|
+
"watch": "lerna exec --no-sort --ignore *server --ignore *device --ignore *browser-extension --stream --parallel -- webpack --watch",
|
|
93
|
+
"watch-packages": "lerna exec --no-sort --scope @sample-stack/platform* --scope @sample-stack/react-shared-components --scope @sample-stack/core --stream --parallel 'webpack --watch'",
|
|
94
|
+
"zen:build": "cross-env NODE_ENV=production zen build",
|
|
95
|
+
"zen:exp": "zen exp",
|
|
96
|
+
"zen:watch": "zen watch -x",
|
|
97
|
+
"zen:watch:debug": "yarn zen:watch -- -v"
|
|
98
|
+
},
|
|
99
|
+
"husky": {
|
|
100
|
+
"hooks": {
|
|
101
|
+
"pre-commit": "lint-staged",
|
|
102
|
+
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
|
|
103
|
+
}
|
|
104
|
+
},
|
|
105
|
+
"lint-staged": {
|
|
106
|
+
"*.md": [
|
|
107
|
+
"yarn format:md",
|
|
108
|
+
"git add"
|
|
109
|
+
],
|
|
110
|
+
"*.{js,jsx,ts,tsx}": [
|
|
111
|
+
"eslint --fix",
|
|
112
|
+
"git add"
|
|
113
|
+
],
|
|
114
|
+
"package.json": "sort-package-json --check package.json */**/package.json "
|
|
115
|
+
},
|
|
116
|
+
"resolutions": {
|
|
117
|
+
"@apollo/client": "^3.9.0",
|
|
118
|
+
"@types/react": "^18.0.25",
|
|
119
|
+
"@types/react-dom": "^18.0.8",
|
|
120
|
+
"chokidar": "^3.5.3",
|
|
121
|
+
"html-to-text": "^8.0.0",
|
|
122
|
+
"react": "18.2.0",
|
|
123
|
+
"react-dom": "18.2.0",
|
|
124
|
+
"react-native": "0.71.14",
|
|
125
|
+
"react-native-gesture-handler": "~2.9.0"
|
|
126
|
+
},
|
|
127
|
+
"dependencies": {
|
|
128
|
+
"dataloader": "^2.1.0",
|
|
129
|
+
"framer-motion": "^6.2.6",
|
|
130
|
+
"graphql": "^16.0.0",
|
|
131
|
+
"graphql-tag": "^2.12.6"
|
|
132
|
+
},
|
|
133
|
+
"devDependencies": {
|
|
134
|
+
"@apollo/utils.keyvadapter": "^3.1.0",
|
|
135
|
+
"@babel/cli": "^7.19.3",
|
|
136
|
+
"@babel/core": "^7.20.2",
|
|
137
|
+
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
|
138
|
+
"@babel/plugin-proposal-decorators": "^7.20.2",
|
|
139
|
+
"@babel/plugin-proposal-export-default-from": "^7.18.10",
|
|
140
|
+
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
|
|
141
|
+
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
|
|
142
|
+
"@babel/plugin-proposal-object-rest-spread": "^7.20.2",
|
|
143
|
+
"@babel/plugin-proposal-optional-chaining": "^7.18.9",
|
|
144
|
+
"@babel/plugin-proposal-pipeline-operator": "^7.18.9",
|
|
145
|
+
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
|
146
|
+
"@babel/plugin-syntax-export-default-from": "^7.18.6",
|
|
147
|
+
"@babel/plugin-syntax-export-namespace-from": "^7.8.3",
|
|
148
|
+
"@babel/plugin-syntax-import-meta": "^7.10.4",
|
|
149
|
+
"@babel/plugin-syntax-numeric-separator": "^7.10.4",
|
|
150
|
+
"@babel/plugin-transform-destructuring": "^7.20.2",
|
|
151
|
+
"@babel/plugin-transform-for-of": "^7.18.8",
|
|
152
|
+
"@babel/plugin-transform-modules-commonjs": "^7.19.6",
|
|
153
|
+
"@babel/plugin-transform-regenerator": "^7.18.6",
|
|
154
|
+
"@babel/plugin-transform-runtime": "^7.19.6",
|
|
155
|
+
"@babel/polyfill": "7.12.1",
|
|
156
|
+
"@babel/preset-env": "^7.20.2",
|
|
157
|
+
"@babel/preset-flow": "^7.18.6",
|
|
158
|
+
"@babel/preset-react": "^7.18.6",
|
|
159
|
+
"@babel/preset-typescript": "^7.18.6",
|
|
160
|
+
"@babel/register": "^7.18.9",
|
|
161
|
+
"@babel/runtime": "^7.20.1",
|
|
162
|
+
"@common-stack/env-list-loader": "6.0.2-alpha.1",
|
|
163
|
+
"@emotion/babel-plugin": "^11.11.0",
|
|
164
|
+
"@graphql-codegen/add": "^5.0.2",
|
|
165
|
+
"@graphql-codegen/cli": "^5.0.2",
|
|
166
|
+
"@graphql-codegen/fragment-matcher": "^5.0.2",
|
|
167
|
+
"@graphql-codegen/import-types-preset": "^3.0.0",
|
|
168
|
+
"@graphql-codegen/near-operation-file-preset": "^3.0.0",
|
|
169
|
+
"@graphql-codegen/typescript": "^4.0.6",
|
|
170
|
+
"@graphql-codegen/typescript-graphql-files-modules": "^3.0.0",
|
|
171
|
+
"@graphql-codegen/typescript-operations": "^4.2.0",
|
|
172
|
+
"@graphql-codegen/typescript-react-apollo": "^4.3.0",
|
|
173
|
+
"@graphql-codegen/typescript-resolvers": "^4.0.6",
|
|
174
|
+
"@loadable/babel-plugin": "^5.13.2",
|
|
175
|
+
"@loadable/webpack-plugin": "^5.15.2",
|
|
176
|
+
"@open-wc/building-rollup": "^2.0.2",
|
|
177
|
+
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.8",
|
|
178
|
+
"@redux-devtools/core": "^3.13.1",
|
|
179
|
+
"@redux-devtools/dock-monitor": "^3.0.1",
|
|
180
|
+
"@redux-devtools/log-monitor": "^4.0.1",
|
|
181
|
+
"@remix-run/dev": "^2.9.2",
|
|
182
|
+
"@remix-run/react": "^2.9.2",
|
|
183
|
+
"@rollup/plugin-graphql": "2.0.2",
|
|
184
|
+
"@rollup/plugin-image": "^3.0.1",
|
|
185
|
+
"@rollup/plugin-json": "^5.0.2",
|
|
186
|
+
"@rollup/plugin-typescript": "^9.0.2",
|
|
187
|
+
"@shelf/jest-mongodb": "^4.1.3",
|
|
188
|
+
"@svgr/webpack": "^6.5.1",
|
|
189
|
+
"@testing-library/react": "^13.4.0",
|
|
190
|
+
"@testing-library/react-hooks": "^8.0.1",
|
|
191
|
+
"@types/async": "^3.2.15",
|
|
192
|
+
"@types/body-parser": "1.19.2",
|
|
193
|
+
"@types/bunyan": "^1.8.8",
|
|
194
|
+
"@types/classnames": "^2.3.1",
|
|
195
|
+
"@types/cors": "2.8.12",
|
|
196
|
+
"@types/enzyme": "^3.10.12",
|
|
197
|
+
"@types/express": "^4.17.20",
|
|
198
|
+
"@types/hoist-non-react-statics": "^3.3.1",
|
|
199
|
+
"@types/isomorphic-fetch": "0.0.36",
|
|
200
|
+
"@types/jest": "^29.4.0",
|
|
201
|
+
"@types/lodash-es": "^4.17.6",
|
|
202
|
+
"@types/minimist": "^1.2.2",
|
|
203
|
+
"@types/node": "18.16.9",
|
|
204
|
+
"@types/prop-types": "^15.7.5",
|
|
205
|
+
"@types/react": "^18.2.20",
|
|
206
|
+
"@types/react-dom": "^18.2.7",
|
|
207
|
+
"@types/react-helmet": "^6.1.5",
|
|
208
|
+
"@types/react-redux": "^7.1.24",
|
|
209
|
+
"@types/react-test-renderer": "^18.0.0",
|
|
210
|
+
"@types/redux-logger": "^3.0.9",
|
|
211
|
+
"@types/semver": "^7.3.13",
|
|
212
|
+
"@types/sinon": "^10.0.13",
|
|
213
|
+
"@types/webpack": "^5.28.0",
|
|
214
|
+
"@types/webpack-env": "^1.18.0",
|
|
215
|
+
"@types/zen-observable": "^0.8.3",
|
|
216
|
+
"@typescript-eslint/eslint-plugin": "^6.7.4",
|
|
217
|
+
"@typescript-eslint/parser": "^6.7.4",
|
|
218
|
+
"@web/rollup-plugin-copy": "^0.5.1",
|
|
219
|
+
"@webpack-cli/serve": "^1.7.0",
|
|
220
|
+
"autoprefixer": "^10.4.13",
|
|
221
|
+
"babel-core": "^7.0.0-bridge.0",
|
|
222
|
+
"babel-eslint": "^10.1.0",
|
|
223
|
+
"babel-jest": "^29.3.0",
|
|
224
|
+
"babel-loader": "^9.1.0",
|
|
225
|
+
"babel-plugin-dynamic-import-node": "^2.3.3",
|
|
226
|
+
"babel-plugin-import": "^1.13.5",
|
|
227
|
+
"caporal": "^1.4.0",
|
|
228
|
+
"chokidar": "^3.5.3",
|
|
229
|
+
"clean-webpack-plugin": "^4.0.0",
|
|
230
|
+
"commitizen": "^4.2.5",
|
|
231
|
+
"compression-webpack-plugin": "^10.0.0",
|
|
232
|
+
"concurrently": "^7.5.0",
|
|
233
|
+
"connect": "^3.7.0",
|
|
234
|
+
"copy-webpack-plugin": "^11.0.0",
|
|
235
|
+
"core-js": "^3.26.0",
|
|
236
|
+
"cross-env": "^7.0.3",
|
|
237
|
+
"css-loader": "^6.7.1",
|
|
238
|
+
"csstype": "^3.1.1",
|
|
239
|
+
"dotenv": "^16.4.5",
|
|
240
|
+
"dotenv-esm": "^16.0.3-4",
|
|
241
|
+
"dotenv-safe": "^9.0.0",
|
|
242
|
+
"dotenv-webpack": "^8.0.1",
|
|
243
|
+
"enzyme": "^3.11.0",
|
|
244
|
+
"esbuild": "^0.15.13",
|
|
245
|
+
"esbuild-loader": "^4.0.3",
|
|
246
|
+
"eslint": "^8.38.0",
|
|
247
|
+
"eslint-config-airbnb-typescript": "^18.0.0",
|
|
248
|
+
"eslint-config-prettier": "^9.1.0",
|
|
249
|
+
"eslint-loader": "^4.0.2",
|
|
250
|
+
"eslint-plugin-graphql": "^4.0.0",
|
|
251
|
+
"eslint-plugin-import": "^2.29.1",
|
|
252
|
+
"eslint-plugin-jest": "^28.2.0",
|
|
253
|
+
"eslint-plugin-jsdoc": "^48.2.3",
|
|
254
|
+
"eslint-plugin-json": "^3.1.0",
|
|
255
|
+
"eslint-plugin-jsonc": "^2.5.0",
|
|
256
|
+
"eslint-plugin-jsx-a11y": "^6.7.1",
|
|
257
|
+
"eslint-plugin-markdown": "^4.0.1",
|
|
258
|
+
"eslint-plugin-no-null": "^1.0.2",
|
|
259
|
+
"eslint-plugin-prettier": "^5.1.3",
|
|
260
|
+
"eslint-plugin-react": "^7.33.2",
|
|
261
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
262
|
+
"eslint-plugin-simple-import-sort": "^8.0.0",
|
|
263
|
+
"express": "^4.18.2",
|
|
264
|
+
"file-loader": "^6.2.0",
|
|
265
|
+
"fork-ts-checker-webpack-plugin": "^7.2.13",
|
|
266
|
+
"freeport-async": "^2.0.0",
|
|
267
|
+
"fs-extra": "^10.1.0",
|
|
268
|
+
"html-loader": "^4.2.0",
|
|
269
|
+
"html-webpack-plugin": "^5.5.0",
|
|
270
|
+
"http-proxy-middleware": "^2.0.6",
|
|
271
|
+
"husky": "^8.0.2",
|
|
272
|
+
"ignore-loader": "^0.1.2",
|
|
273
|
+
"ip": "^1.1.8",
|
|
274
|
+
"isomorphic-style-loader": "^5.3.2",
|
|
275
|
+
"istanbul": "1.0.0-alpha.2",
|
|
276
|
+
"jest": "^29.4.1",
|
|
277
|
+
"jest-css-modules-transform": "^4.4.2",
|
|
278
|
+
"jest-dom": "^4.0.0",
|
|
279
|
+
"jest-junit": "^14.0.1",
|
|
280
|
+
"jest-matcher-utils": "^29.2.2",
|
|
281
|
+
"jest-transform-graphql": "^2.1.0",
|
|
282
|
+
"jsdom": "^20.0.2",
|
|
283
|
+
"lerna": "8",
|
|
284
|
+
"less": "^4.1.3",
|
|
285
|
+
"less-loader": "^11.0.0",
|
|
286
|
+
"lint-staged": "^15.2.7",
|
|
287
|
+
"lodash": "^4.17.21",
|
|
288
|
+
"lodash-es": "^4.17.21",
|
|
289
|
+
"lodash-webpack-plugin": "^0.11.6",
|
|
290
|
+
"markdownlint-cli": "^0.32.2",
|
|
291
|
+
"merge": "^2.1.1",
|
|
292
|
+
"mime": "^3.0.0",
|
|
293
|
+
"mini-css-extract-plugin": "^2.6.1",
|
|
294
|
+
"minilog": "^3.1.0",
|
|
295
|
+
"mkdirp": "^1.0.4",
|
|
296
|
+
"mocha": "^10.1.0",
|
|
297
|
+
"mocha-steps": "^1.3.0",
|
|
298
|
+
"module": "^1.2.5",
|
|
299
|
+
"morgan": "^1.10.0",
|
|
300
|
+
"nock": "^13.2.9",
|
|
301
|
+
"node-dev": "^7.4.3",
|
|
302
|
+
"node-hmr-plugin": "^1.0.1",
|
|
303
|
+
"nodemon": "^2.0.20",
|
|
304
|
+
"nodemon-webpack-plugin": "^4.8.1",
|
|
305
|
+
"openurl": "^1.1.1",
|
|
306
|
+
"pm2": "^5.2.2",
|
|
307
|
+
"postcss-loader": "^7.0.1",
|
|
308
|
+
"prettier": "^2.7.1",
|
|
309
|
+
"process": "^0.11.10",
|
|
310
|
+
"qrcode-terminal": "^0.12.0",
|
|
311
|
+
"raw-loader": "^4.0.2",
|
|
312
|
+
"react-addons-test-utils": "^16.0.0-alpha.3",
|
|
313
|
+
"react-refresh": "^0.14.0",
|
|
314
|
+
"react-test-renderer": "^18.2.0",
|
|
315
|
+
"redux-devtools-extension": "^2.13.9",
|
|
316
|
+
"redux-mock-store": "^1.5.4",
|
|
317
|
+
"remap-istanbul": "^0.13.0",
|
|
318
|
+
"resolve-url-loader": "^5.0.0",
|
|
319
|
+
"rimraf": "^3.0.2",
|
|
320
|
+
"rollup": "^4.13.0",
|
|
321
|
+
"rollup-plugin-esbuild": "^6.1.1",
|
|
322
|
+
"rollup-plugin-string": "^3.0.0",
|
|
323
|
+
"sass-loader": "^13.1.0",
|
|
324
|
+
"shelljs": "^0.8.5",
|
|
325
|
+
"simple-git": "^3.14.1",
|
|
326
|
+
"sinon": "^14.0.2",
|
|
327
|
+
"sort-package-json": "^2.10.0",
|
|
328
|
+
"source-list-map": "^2.0.1",
|
|
329
|
+
"source-map-loader": "^4.0.1",
|
|
330
|
+
"source-map-support": "^0.5.21",
|
|
331
|
+
"standard-version": "^9.5.0",
|
|
332
|
+
"stream-browserify": "^3.0.0",
|
|
333
|
+
"style-loader": "^3.3.1",
|
|
334
|
+
"svg-url-loader": "^8.0.0",
|
|
335
|
+
"tcomb": "^3.2.29",
|
|
336
|
+
"ts-jest": "^29.1.0",
|
|
337
|
+
"ts-loader": "^9.4.1",
|
|
338
|
+
"ts-node": "^10.9.1",
|
|
339
|
+
"tslib": "^2.4.1",
|
|
340
|
+
"typedoc": "^0.23.20",
|
|
341
|
+
"typescript": "^5.1.6",
|
|
342
|
+
"url-loader": "^4.1.1",
|
|
343
|
+
"wait-on": "^6.0.1",
|
|
344
|
+
"webpack": "^5.74.0",
|
|
345
|
+
"webpack-bundle-analyzer": "^4.7.0",
|
|
346
|
+
"webpack-cli": "^4.10.0",
|
|
347
|
+
"webpack-dev-server": "^4.11.1",
|
|
348
|
+
"webpack-manifest-plugin": "^5.0.0",
|
|
349
|
+
"webpack-merge": "^5.8.0",
|
|
350
|
+
"webpack-node-externals": "^3.0.0",
|
|
351
|
+
"webpack-sources": "^3.2.3",
|
|
352
|
+
"ws": "^8.11.0"
|
|
353
|
+
},
|
|
354
|
+
"engines": {
|
|
355
|
+
"node": ">=14.17.3 < 23.0.0",
|
|
356
|
+
"yarn": ">=1.22"
|
|
357
|
+
},
|
|
358
|
+
"cacheDirectories": [
|
|
359
|
+
".cache"
|
|
24
360
|
]
|
|
25
|
-
},
|
|
26
|
-
"scripts": {
|
|
27
|
-
"prebootstrap": "lerna run prepare",
|
|
28
|
-
"bootstrap": "yarn && yarn lerna",
|
|
29
|
-
"postbootstrap": "yarn build",
|
|
30
|
-
"build": "yarn build:packages",
|
|
31
|
-
"build:clean": "lerna exec yarn build:clean",
|
|
32
|
-
"build:packages": "lerna run build --ignore *server --ignore *device --ignore *browser-extension",
|
|
33
|
-
"build:packages:watch": "lerna run build:lib:watch --ignore *server --ignore *device --ignore *browser-extension --stream",
|
|
34
|
-
"check-updates": "lerna exec ./node_modules/.bin/npm-check-updates -- -u",
|
|
35
|
-
"clean": "lerna clean --yes && yarn build:clean && rimraf node_modules",
|
|
36
|
-
"clean:force": "rimraf package-lock.json yarn.lock && yarn clean",
|
|
37
|
-
"clean:install": "yarn clean:force && yarn git:pull && yarn bootstrap",
|
|
38
|
-
"cli": "node tools/cli",
|
|
39
|
-
"commit": "git cz",
|
|
40
|
-
"compile": "lerna exec -- yarn compile",
|
|
41
|
-
"coverage": "jest --coverage",
|
|
42
|
-
"postcoverage": "remap-istanbul --input coverage/coverage.raw.json --type lcovonly --output coverage/lcov.info",
|
|
43
|
-
"db:migrate": "knex migrate:latest --cwd . --knexfile ./servers/backend-server/knexfile.js",
|
|
44
|
-
"db:migrate:rollback": "knex migrate:rollback --cwd . --knexfile ./servers/backend-server/knexfile.js",
|
|
45
|
-
"db:seed": "yarn db:migrate && knex seed:run --cwd . --knexfile ./servers/backend-server/knexfile.js",
|
|
46
|
-
"predevpublish": "if ! git show-ref --verify --quiet refs/remotes/origin/$PUBLISH_BRANCH; then git checkout -b $PUBLISH_BRANCH && git push -u origin $PUBLISH_BRANCH; fi && git fetch origin $PUBLISH_BRANCH && git checkout $PUBLISH_BRANCH && git pull origin $PUBLISH_BRANCH && git merge -s recursive -X theirs $REPOSITORY_BRANCH -m \"merge from $REPOSITORY_BRANCH\" && yarn gitcommit && node tools/update-dependency-version.js && yarn gitcommit",
|
|
47
|
-
"devpublish": "lerna publish prerelease --ignore-scripts --exact",
|
|
48
|
-
"postdevpublish": "git checkout $REPOSITORY_BRANCH",
|
|
49
|
-
"devpublish:auto": "yarn devpublish -- --yes",
|
|
50
|
-
"devpublish:force": "yarn devpublish -- --force-publish=* --yes",
|
|
51
|
-
"devpublish:forceManual": "yarn devpublish -- --force-publish=*",
|
|
52
|
-
"devpublish:push": "yarn predevpublish && git push origin $PUBLISH_BRANCH && yarn postdevpublish",
|
|
53
|
-
"format": "yarn lint --fix",
|
|
54
|
-
"format:md": "yarn lint:md --fix",
|
|
55
|
-
"generateGraphql": "graphql-codegen",
|
|
56
|
-
"generateGraphql:watch": "yarn generateGraphql -- --watch",
|
|
57
|
-
"git:pull": "git pull origin $(git rev-parse --abbrev-ref HEAD)",
|
|
58
|
-
"git:push": "git push origin $(git rev-parse --abbrev-ref HEAD)",
|
|
59
|
-
"gitcommit": "git add -A && git diff --staged --quiet || git commit -am 'auto publish [skip ci] \r\n'",
|
|
60
|
-
"husky-skip": "cross-env HUSKY_SKIP_HOOKS=1",
|
|
61
|
-
"jest": "./node_modules/.bin/jest",
|
|
62
|
-
"lerna": "lerna bootstrap",
|
|
63
|
-
"prelernapublish": "git checkout publish && git pull origin publish && git merge -s recursive -X theirs master -m 'merge from master' && yarn gitcommit && node tools/update-dependency-version.js && yarn gitcommit",
|
|
64
|
-
"lernapublish": "lerna publish --ignore-scripts --cd-version=patch && yarn update-lerna-on-develop",
|
|
65
|
-
"postlernapublish": "git checkout master",
|
|
66
|
-
"lint": "eslint --ext js --ext ts --ext md",
|
|
67
|
-
"lint:ci": "yarn lint . --format junit",
|
|
68
|
-
"lint:fix": "yarn lint -- --fix",
|
|
69
|
-
"lint:md": "markdownlint",
|
|
70
|
-
"lintx": "yarn lint ./packages/**/src/**/*.ts ./packages-modules/**/src/**/*.ts",
|
|
71
|
-
"prepare": "husky",
|
|
72
|
-
"prodBuild": "cross-env NODE_ENV=production babel-node --presets es2015 tools/webpack.run",
|
|
73
|
-
"publish": "yarn lernapublish",
|
|
74
|
-
"publish:auto": "yarn lernapublish --yes",
|
|
75
|
-
"publish:force": "yarn publish:forceManual --yes",
|
|
76
|
-
"publish:forceManual": "yarn lernapublish --force-publish=*",
|
|
77
|
-
"publish:push": "yarn prelernapublish && git push origin publish && yarn postlernapublish",
|
|
78
|
-
"setBranchEnv": "cross-env REPOSITORY_BRANCH=${1:-$REPOSITORY_BRANCH} PUBLISH_BRANCH=${2:-$PUBLISH_BRANCH}",
|
|
79
|
-
"sort-packages": "node tools/sortPackageJson.mjs",
|
|
80
|
-
"start": "cross-env NODE_ENV=development ENV_FILE=../../config/development/dev.env yarn startWeb",
|
|
81
|
-
"start:SSR": "concurrently --names \"BACKEND,FRONTEND\" -c \"bgBlue.bold,bgMagenta.bold\" \"lerna run --scope='*backend-server' start\" \"lerna run --scope='*frontend-server' start:SSR\"",
|
|
82
|
-
"start:devSSR": "concurrently --names \"BACKEND,FRONTEND\" -c \"bgBlue.bold,bgMagenta.bold\" \"lerna run --scope='*backend-server' watch\" \"lerna run --scope='*frontend-server' start:devSSR\"",
|
|
83
|
-
"start:test": "cross-env NODE_ENV=test ENV_FILE=../../config/test/test.env yarn startWeb",
|
|
84
|
-
"startWeb": "lerna run --scope='{*frontend-server,*backend-server}' --parallel watch --stream",
|
|
85
|
-
"test": "cross-env ENV_FILE=config/test/test.env jest",
|
|
86
|
-
"posttest": "yarn lint",
|
|
87
|
-
"test:watch": "npm test -- --watch",
|
|
88
|
-
"pretravis": "yarn compile",
|
|
89
|
-
"travis": "istanbul cover -x \"*.test.js\" _mocha -- --timeout 5000 --full-trace ./test/tests.js",
|
|
90
|
-
"posttravis": "yarn lint",
|
|
91
|
-
"update-lerna-on-develop": "git checkout publish && git pull && cp lerna.json ../lerna-temp.json && git checkout develop && mv ../lerna-temp.json lerna.json && git commit -am 'Update lerna.json' && git push",
|
|
92
|
-
"watch": "lerna exec --no-sort --ignore *server --ignore *device --ignore *browser-extension --stream --parallel -- webpack --watch",
|
|
93
|
-
"watch-packages": "lerna exec --no-sort --scope @sample-stack/platform* --scope @sample-stack/react-shared-components --scope @sample-stack/core --stream --parallel 'webpack --watch'",
|
|
94
|
-
"zen:build": "cross-env NODE_ENV=production zen build",
|
|
95
|
-
"zen:exp": "zen exp",
|
|
96
|
-
"zen:watch": "zen watch -x",
|
|
97
|
-
"zen:watch:debug": "yarn zen:watch -- -v"
|
|
98
|
-
},
|
|
99
|
-
"husky": {
|
|
100
|
-
"hooks": {
|
|
101
|
-
"pre-commit": "lint-staged",
|
|
102
|
-
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
|
|
103
|
-
}
|
|
104
|
-
},
|
|
105
|
-
"lint-staged": {
|
|
106
|
-
"*.md": [
|
|
107
|
-
"yarn format:md",
|
|
108
|
-
"git add"
|
|
109
|
-
],
|
|
110
|
-
"*.{js,jsx,ts,tsx}": [
|
|
111
|
-
"eslint --fix",
|
|
112
|
-
"git add"
|
|
113
|
-
],
|
|
114
|
-
"package.json": "sort-package-json --check package.json */**/package.json "
|
|
115
|
-
},
|
|
116
|
-
"resolutions": {
|
|
117
|
-
"@apollo/client": "^3.9.0",
|
|
118
|
-
"@types/react": "^18.0.25",
|
|
119
|
-
"@types/react-dom": "^18.0.8",
|
|
120
|
-
"chokidar": "^3.5.3",
|
|
121
|
-
"html-to-text": "^8.0.0",
|
|
122
|
-
"react": "18.2.0",
|
|
123
|
-
"react-dom": "18.2.0",
|
|
124
|
-
"react-native": "0.71.14",
|
|
125
|
-
"react-native-gesture-handler": "~2.9.0"
|
|
126
|
-
},
|
|
127
|
-
"dependencies": {
|
|
128
|
-
"dataloader": "^2.1.0",
|
|
129
|
-
"framer-motion": "^6.2.6",
|
|
130
|
-
"graphql": "^16.0.0",
|
|
131
|
-
"graphql-tag": "^2.12.6"
|
|
132
|
-
},
|
|
133
|
-
"devDependencies": {
|
|
134
|
-
"@apollo/utils.keyvadapter": "^3.1.0",
|
|
135
|
-
"@babel/cli": "^7.19.3",
|
|
136
|
-
"@babel/core": "^7.20.2",
|
|
137
|
-
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
|
138
|
-
"@babel/plugin-proposal-decorators": "^7.20.2",
|
|
139
|
-
"@babel/plugin-proposal-export-default-from": "^7.18.10",
|
|
140
|
-
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
|
|
141
|
-
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
|
|
142
|
-
"@babel/plugin-proposal-object-rest-spread": "^7.20.2",
|
|
143
|
-
"@babel/plugin-proposal-optional-chaining": "^7.18.9",
|
|
144
|
-
"@babel/plugin-proposal-pipeline-operator": "^7.18.9",
|
|
145
|
-
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
|
146
|
-
"@babel/plugin-syntax-export-default-from": "^7.18.6",
|
|
147
|
-
"@babel/plugin-syntax-export-namespace-from": "^7.8.3",
|
|
148
|
-
"@babel/plugin-syntax-import-meta": "^7.10.4",
|
|
149
|
-
"@babel/plugin-syntax-numeric-separator": "^7.10.4",
|
|
150
|
-
"@babel/plugin-transform-destructuring": "^7.20.2",
|
|
151
|
-
"@babel/plugin-transform-for-of": "^7.18.8",
|
|
152
|
-
"@babel/plugin-transform-modules-commonjs": "^7.19.6",
|
|
153
|
-
"@babel/plugin-transform-regenerator": "^7.18.6",
|
|
154
|
-
"@babel/plugin-transform-runtime": "^7.19.6",
|
|
155
|
-
"@babel/polyfill": "7.12.1",
|
|
156
|
-
"@babel/preset-env": "^7.20.2",
|
|
157
|
-
"@babel/preset-flow": "^7.18.6",
|
|
158
|
-
"@babel/preset-react": "^7.18.6",
|
|
159
|
-
"@babel/preset-typescript": "^7.18.6",
|
|
160
|
-
"@babel/register": "^7.18.9",
|
|
161
|
-
"@babel/runtime": "^7.20.1",
|
|
162
|
-
"@common-stack/env-list-loader": "6.0.1-alpha.0",
|
|
163
|
-
"@emotion/babel-plugin": "^11.11.0",
|
|
164
|
-
"@graphql-codegen/add": "^5.0.2",
|
|
165
|
-
"@graphql-codegen/cli": "^5.0.2",
|
|
166
|
-
"@graphql-codegen/fragment-matcher": "^5.0.2",
|
|
167
|
-
"@graphql-codegen/import-types-preset": "^3.0.0",
|
|
168
|
-
"@graphql-codegen/near-operation-file-preset": "^3.0.0",
|
|
169
|
-
"@graphql-codegen/typescript": "^4.0.6",
|
|
170
|
-
"@graphql-codegen/typescript-graphql-files-modules": "^3.0.0",
|
|
171
|
-
"@graphql-codegen/typescript-operations": "^4.2.0",
|
|
172
|
-
"@graphql-codegen/typescript-react-apollo": "^4.3.0",
|
|
173
|
-
"@graphql-codegen/typescript-resolvers": "^4.0.6",
|
|
174
|
-
"@loadable/babel-plugin": "^5.13.2",
|
|
175
|
-
"@loadable/webpack-plugin": "^5.15.2",
|
|
176
|
-
"@open-wc/building-rollup": "^2.0.2",
|
|
177
|
-
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.8",
|
|
178
|
-
"@redux-devtools/core": "^3.13.1",
|
|
179
|
-
"@redux-devtools/dock-monitor": "^3.0.1",
|
|
180
|
-
"@redux-devtools/log-monitor": "^4.0.1",
|
|
181
|
-
"@remix-run/dev": "^2.9.2",
|
|
182
|
-
"@remix-run/react": "^2.9.2",
|
|
183
|
-
"@rollup/plugin-graphql": "2.0.2",
|
|
184
|
-
"@rollup/plugin-image": "^3.0.1",
|
|
185
|
-
"@rollup/plugin-json": "^5.0.2",
|
|
186
|
-
"@rollup/plugin-typescript": "^9.0.2",
|
|
187
|
-
"@shelf/jest-mongodb": "^4.1.3",
|
|
188
|
-
"@svgr/webpack": "^6.5.1",
|
|
189
|
-
"@testing-library/react": "^13.4.0",
|
|
190
|
-
"@testing-library/react-hooks": "^8.0.1",
|
|
191
|
-
"@types/async": "^3.2.15",
|
|
192
|
-
"@types/body-parser": "1.19.2",
|
|
193
|
-
"@types/bunyan": "^1.8.8",
|
|
194
|
-
"@types/classnames": "^2.3.1",
|
|
195
|
-
"@types/cors": "2.8.12",
|
|
196
|
-
"@types/enzyme": "^3.10.12",
|
|
197
|
-
"@types/express": "^4.17.20",
|
|
198
|
-
"@types/hoist-non-react-statics": "^3.3.1",
|
|
199
|
-
"@types/isomorphic-fetch": "0.0.36",
|
|
200
|
-
"@types/jest": "^29.4.0",
|
|
201
|
-
"@types/lodash-es": "^4.17.6",
|
|
202
|
-
"@types/minimist": "^1.2.2",
|
|
203
|
-
"@types/node": "18.16.9",
|
|
204
|
-
"@types/prop-types": "^15.7.5",
|
|
205
|
-
"@types/react": "^18.2.20",
|
|
206
|
-
"@types/react-dom": "^18.2.7",
|
|
207
|
-
"@types/react-helmet": "^6.1.5",
|
|
208
|
-
"@types/react-redux": "^7.1.24",
|
|
209
|
-
"@types/react-test-renderer": "^18.0.0",
|
|
210
|
-
"@types/redux-logger": "^3.0.9",
|
|
211
|
-
"@types/semver": "^7.3.13",
|
|
212
|
-
"@types/sinon": "^10.0.13",
|
|
213
|
-
"@types/webpack": "^5.28.0",
|
|
214
|
-
"@types/webpack-env": "^1.18.0",
|
|
215
|
-
"@types/zen-observable": "^0.8.3",
|
|
216
|
-
"@typescript-eslint/eslint-plugin": "^6.7.4",
|
|
217
|
-
"@typescript-eslint/parser": "^6.7.4",
|
|
218
|
-
"@web/rollup-plugin-copy": "^0.5.1",
|
|
219
|
-
"@webpack-cli/serve": "^1.7.0",
|
|
220
|
-
"autoprefixer": "^10.4.13",
|
|
221
|
-
"babel-core": "^7.0.0-bridge.0",
|
|
222
|
-
"babel-eslint": "^10.1.0",
|
|
223
|
-
"babel-jest": "^29.3.0",
|
|
224
|
-
"babel-loader": "^9.1.0",
|
|
225
|
-
"babel-plugin-dynamic-import-node": "^2.3.3",
|
|
226
|
-
"babel-plugin-import": "^1.13.5",
|
|
227
|
-
"caporal": "^1.4.0",
|
|
228
|
-
"chokidar": "^3.5.3",
|
|
229
|
-
"clean-webpack-plugin": "^4.0.0",
|
|
230
|
-
"commitizen": "^4.2.5",
|
|
231
|
-
"compression-webpack-plugin": "^10.0.0",
|
|
232
|
-
"concurrently": "^7.5.0",
|
|
233
|
-
"connect": "^3.7.0",
|
|
234
|
-
"copy-webpack-plugin": "^11.0.0",
|
|
235
|
-
"core-js": "^3.26.0",
|
|
236
|
-
"cross-env": "^7.0.3",
|
|
237
|
-
"css-loader": "^6.7.1",
|
|
238
|
-
"csstype": "^3.1.1",
|
|
239
|
-
"dotenv": "^16.4.5",
|
|
240
|
-
"dotenv-esm": "^16.0.3-4",
|
|
241
|
-
"dotenv-safe": "^9.0.0",
|
|
242
|
-
"dotenv-webpack": "^8.0.1",
|
|
243
|
-
"enzyme": "^3.11.0",
|
|
244
|
-
"esbuild": "^0.15.13",
|
|
245
|
-
"esbuild-loader": "^4.0.3",
|
|
246
|
-
"eslint": "^8.38.0",
|
|
247
|
-
"eslint-config-airbnb-typescript": "^18.0.0",
|
|
248
|
-
"eslint-config-prettier": "^9.1.0",
|
|
249
|
-
"eslint-loader": "^4.0.2",
|
|
250
|
-
"eslint-plugin-graphql": "^4.0.0",
|
|
251
|
-
"eslint-plugin-import": "^2.29.1",
|
|
252
|
-
"eslint-plugin-jest": "^28.2.0",
|
|
253
|
-
"eslint-plugin-jsdoc": "^48.2.3",
|
|
254
|
-
"eslint-plugin-json": "^3.1.0",
|
|
255
|
-
"eslint-plugin-jsonc": "^2.5.0",
|
|
256
|
-
"eslint-plugin-jsx-a11y": "^6.7.1",
|
|
257
|
-
"eslint-plugin-markdown": "^4.0.1",
|
|
258
|
-
"eslint-plugin-no-null": "^1.0.2",
|
|
259
|
-
"eslint-plugin-prettier": "^5.1.3",
|
|
260
|
-
"eslint-plugin-react": "^7.33.2",
|
|
261
|
-
"eslint-plugin-react-hooks": "^4.6.0",
|
|
262
|
-
"eslint-plugin-simple-import-sort": "^8.0.0",
|
|
263
|
-
"express": "^4.18.2",
|
|
264
|
-
"file-loader": "^6.2.0",
|
|
265
|
-
"fork-ts-checker-webpack-plugin": "^7.2.13",
|
|
266
|
-
"freeport-async": "^2.0.0",
|
|
267
|
-
"fs-extra": "^10.1.0",
|
|
268
|
-
"html-loader": "^4.2.0",
|
|
269
|
-
"html-webpack-plugin": "^5.5.0",
|
|
270
|
-
"http-proxy-middleware": "^2.0.6",
|
|
271
|
-
"husky": "^8.0.2",
|
|
272
|
-
"ignore-loader": "^0.1.2",
|
|
273
|
-
"ip": "^1.1.8",
|
|
274
|
-
"isomorphic-style-loader": "^5.3.2",
|
|
275
|
-
"istanbul": "1.0.0-alpha.2",
|
|
276
|
-
"jest": "^29.4.1",
|
|
277
|
-
"jest-css-modules-transform": "^4.4.2",
|
|
278
|
-
"jest-dom": "^4.0.0",
|
|
279
|
-
"jest-junit": "^14.0.1",
|
|
280
|
-
"jest-matcher-utils": "^29.2.2",
|
|
281
|
-
"jest-transform-graphql": "^2.1.0",
|
|
282
|
-
"jsdom": "^20.0.2",
|
|
283
|
-
"lerna": "8",
|
|
284
|
-
"less": "^4.1.3",
|
|
285
|
-
"less-loader": "^11.0.0",
|
|
286
|
-
"lint-staged": "^15.2.7",
|
|
287
|
-
"lodash": "^4.17.21",
|
|
288
|
-
"lodash-es": "^4.17.21",
|
|
289
|
-
"lodash-webpack-plugin": "^0.11.6",
|
|
290
|
-
"markdownlint-cli": "^0.32.2",
|
|
291
|
-
"merge": "^2.1.1",
|
|
292
|
-
"mime": "^3.0.0",
|
|
293
|
-
"mini-css-extract-plugin": "^2.6.1",
|
|
294
|
-
"minilog": "^3.1.0",
|
|
295
|
-
"mkdirp": "^1.0.4",
|
|
296
|
-
"mocha": "^10.1.0",
|
|
297
|
-
"mocha-steps": "^1.3.0",
|
|
298
|
-
"module": "^1.2.5",
|
|
299
|
-
"morgan": "^1.10.0",
|
|
300
|
-
"nock": "^13.2.9",
|
|
301
|
-
"node-dev": "^7.4.3",
|
|
302
|
-
"node-hmr-plugin": "^1.0.1",
|
|
303
|
-
"nodemon": "^2.0.20",
|
|
304
|
-
"nodemon-webpack-plugin": "^4.8.1",
|
|
305
|
-
"openurl": "^1.1.1",
|
|
306
|
-
"pm2": "^5.2.2",
|
|
307
|
-
"postcss-loader": "^7.0.1",
|
|
308
|
-
"prettier": "^2.7.1",
|
|
309
|
-
"process": "^0.11.10",
|
|
310
|
-
"qrcode-terminal": "^0.12.0",
|
|
311
|
-
"raw-loader": "^4.0.2",
|
|
312
|
-
"react-addons-test-utils": "^16.0.0-alpha.3",
|
|
313
|
-
"react-refresh": "^0.14.0",
|
|
314
|
-
"react-test-renderer": "^18.2.0",
|
|
315
|
-
"redux-devtools-extension": "^2.13.9",
|
|
316
|
-
"redux-mock-store": "^1.5.4",
|
|
317
|
-
"remap-istanbul": "^0.13.0",
|
|
318
|
-
"resolve-url-loader": "^5.0.0",
|
|
319
|
-
"rimraf": "^3.0.2",
|
|
320
|
-
"rollup": "^4.13.0",
|
|
321
|
-
"rollup-plugin-esbuild": "^6.1.1",
|
|
322
|
-
"rollup-plugin-string": "^3.0.0",
|
|
323
|
-
"sass-loader": "^13.1.0",
|
|
324
|
-
"shelljs": "^0.8.5",
|
|
325
|
-
"simple-git": "^3.14.1",
|
|
326
|
-
"sinon": "^14.0.2",
|
|
327
|
-
"sort-package-json": "^2.10.0",
|
|
328
|
-
"source-list-map": "^2.0.1",
|
|
329
|
-
"source-map-loader": "^4.0.1",
|
|
330
|
-
"source-map-support": "^0.5.21",
|
|
331
|
-
"standard-version": "^9.5.0",
|
|
332
|
-
"stream-browserify": "^3.0.0",
|
|
333
|
-
"style-loader": "^3.3.1",
|
|
334
|
-
"svg-url-loader": "^8.0.0",
|
|
335
|
-
"tcomb": "^3.2.29",
|
|
336
|
-
"ts-jest": "^29.1.0",
|
|
337
|
-
"ts-loader": "^9.4.1",
|
|
338
|
-
"ts-node": "^10.9.1",
|
|
339
|
-
"tslib": "^2.4.1",
|
|
340
|
-
"typedoc": "^0.23.20",
|
|
341
|
-
"typescript": "^5.1.6",
|
|
342
|
-
"url-loader": "^4.1.1",
|
|
343
|
-
"wait-on": "^6.0.1",
|
|
344
|
-
"webpack": "^5.74.0",
|
|
345
|
-
"webpack-bundle-analyzer": "^4.7.0",
|
|
346
|
-
"webpack-cli": "^4.10.0",
|
|
347
|
-
"webpack-dev-server": "^4.11.1",
|
|
348
|
-
"webpack-manifest-plugin": "^5.0.0",
|
|
349
|
-
"webpack-merge": "^5.8.0",
|
|
350
|
-
"webpack-node-externals": "^3.0.0",
|
|
351
|
-
"webpack-sources": "^3.2.3",
|
|
352
|
-
"ws": "^8.11.0"
|
|
353
|
-
},
|
|
354
|
-
"engines": {
|
|
355
|
-
"node": ">=14.17.3 < 23.0.0",
|
|
356
|
-
"yarn": ">=1.22"
|
|
357
|
-
},
|
|
358
|
-
"cacheDirectories": [
|
|
359
|
-
".cache"
|
|
360
|
-
]
|
|
361
361
|
}
|