mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-05 09:01:18 -04:00
chore: uninstall cross-env (#55224)
This commit is contained in:
committed by
GitHub
parent
f1cd0cfae3
commit
daede0a8ff
@@ -25,7 +25,7 @@
|
||||
"common-setup": "pnpm -w run create:shared",
|
||||
"predevelop": "pnpm common-setup",
|
||||
"develop": "node src/development-start.js",
|
||||
"start": "cross-env DEBUG=fcc* node lib/production-start.js"
|
||||
"start": "DEBUG=fcc* node lib/production-start.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@freecodecamp/loopback-component-passport": "1.2.0",
|
||||
@@ -37,7 +37,6 @@
|
||||
"connect-mongo": "3.2.0",
|
||||
"cookie-parser": "1.4.6",
|
||||
"cors": "2.8.5",
|
||||
"cross-env": "7.0.3",
|
||||
"csurf": "1.11.0",
|
||||
"date-fns": "1.30.1",
|
||||
"debug": "2.2.0",
|
||||
|
||||
@@ -20,14 +20,14 @@
|
||||
"main": "none",
|
||||
"scripts": {
|
||||
"prebuild": "pnpm run common-setup && pnpm run build:scripts --env production",
|
||||
"build": "cross-env NODE_OPTIONS=\"--max-old-space-size=7168\" gatsby build --prefix-paths",
|
||||
"build": "NODE_OPTIONS=\"--max-old-space-size=7168\" gatsby build --prefix-paths",
|
||||
"build:scripts": "pnpm run -F=browser-scripts build",
|
||||
"clean": "gatsby clean",
|
||||
"common-setup": "pnpm -w run create:shared && pnpm run create:env && pnpm run create:trending",
|
||||
"create:env": "cross-env DEBUG=fcc:* ts-node ./tools/create-env.ts",
|
||||
"create:env": "DEBUG=fcc:* ts-node ./tools/create-env.ts",
|
||||
"create:trending": "ts-node ./tools/download-trending.ts",
|
||||
"predevelop": "pnpm run common-setup && pnpm run build:scripts --env development",
|
||||
"develop": "cross-env NODE_OPTIONS=\"--max-old-space-size=7168\" gatsby develop --inspect=9230",
|
||||
"develop": "NODE_OPTIONS=\"--max-old-space-size=7168\" gatsby develop --inspect=9230",
|
||||
"lint": "ts-node ./i18n/schema-validation.ts",
|
||||
"serve": "gatsby serve -p 8000",
|
||||
"serve-ci": "serve -l 8000 -c serve.json public",
|
||||
@@ -177,7 +177,6 @@
|
||||
"chokidar": "3.6.0",
|
||||
"copy-webpack-plugin": "9.1.0",
|
||||
"core-js": "2.6.12",
|
||||
"cross-env": "7.0.3",
|
||||
"dotenv": "16.4.5",
|
||||
"eslint-plugin-testing-library": "^3.9.0",
|
||||
"gatsby-plugin-webpack-bundle-analyser-v2": "1.1.32",
|
||||
|
||||
@@ -19,24 +19,24 @@
|
||||
"author": "freeCodeCamp <team@freecodecamp.org>",
|
||||
"scripts": {
|
||||
"build": "ts-node --project ../tsconfig.json ../tools/scripts/build/build-curriculum",
|
||||
"create-empty-steps": "cross-env CALLING_DIR=$INIT_CWD ts-node --project ../tsconfig.json ../tools/challenge-helper-scripts/create-empty-steps",
|
||||
"create-next-challenge": "cross-env CALLING_DIR=$INIT_CWD ts-node --project ../tsconfig.json ../tools/challenge-helper-scripts/create-next-challenge",
|
||||
"create-this-challenge": "cross-env CALLING_DIR=$INIT_CWD ts-node --project ../tsconfig.json ../tools/challenge-helper-scripts/create-this-challenge",
|
||||
"create-next-step": "cross-env CALLING_DIR=$INIT_CWD ts-node --project ../tsconfig.json ../tools/challenge-helper-scripts/create-next-step",
|
||||
"create-next-task": "cross-env CALLING_DIR=$INIT_CWD ts-node --project ../tsconfig.json ../tools/challenge-helper-scripts/create-next-task",
|
||||
"insert-challenge": "cross-env CALLING_DIR=$INIT_CWD ts-node --project ../tsconfig.json ../tools/challenge-helper-scripts/insert-challenge",
|
||||
"insert-step": "cross-env CALLING_DIR=$INIT_CWD ts-node --project ../tsconfig.json ../tools/challenge-helper-scripts/insert-step",
|
||||
"insert-task": "cross-env CALLING_DIR=$INIT_CWD ts-node --project ../tsconfig.json ../tools/challenge-helper-scripts/insert-task",
|
||||
"delete-step": "cross-env CALLING_DIR=$INIT_CWD ts-node --project ../tsconfig.json ../tools/challenge-helper-scripts/delete-step",
|
||||
"delete-challenge": "cross-env CALLING_DIR=$INIT_CWD ts-node --project ../tsconfig.json ../tools/challenge-helper-scripts/delete-challenge",
|
||||
"delete-task": "cross-env CALLING_DIR=$INIT_CWD ts-node --project ../tsconfig.json ../tools/challenge-helper-scripts/delete-task",
|
||||
"create-empty-steps": "CALLING_DIR=$INIT_CWD ts-node --project ../tsconfig.json ../tools/challenge-helper-scripts/create-empty-steps",
|
||||
"create-next-challenge": "CALLING_DIR=$INIT_CWD ts-node --project ../tsconfig.json ../tools/challenge-helper-scripts/create-next-challenge",
|
||||
"create-this-challenge": "CALLING_DIR=$INIT_CWD ts-node --project ../tsconfig.json ../tools/challenge-helper-scripts/create-this-challenge",
|
||||
"create-next-step": "CALLING_DIR=$INIT_CWD ts-node --project ../tsconfig.json ../tools/challenge-helper-scripts/create-next-step",
|
||||
"create-next-task": "CALLING_DIR=$INIT_CWD ts-node --project ../tsconfig.json ../tools/challenge-helper-scripts/create-next-task",
|
||||
"insert-challenge": "CALLING_DIR=$INIT_CWD ts-node --project ../tsconfig.json ../tools/challenge-helper-scripts/insert-challenge",
|
||||
"insert-step": "CALLING_DIR=$INIT_CWD ts-node --project ../tsconfig.json ../tools/challenge-helper-scripts/insert-step",
|
||||
"insert-task": "CALLING_DIR=$INIT_CWD ts-node --project ../tsconfig.json ../tools/challenge-helper-scripts/insert-task",
|
||||
"delete-step": "CALLING_DIR=$INIT_CWD ts-node --project ../tsconfig.json ../tools/challenge-helper-scripts/delete-step",
|
||||
"delete-challenge": "CALLING_DIR=$INIT_CWD ts-node --project ../tsconfig.json ../tools/challenge-helper-scripts/delete-challenge",
|
||||
"delete-task": "CALLING_DIR=$INIT_CWD ts-node --project ../tsconfig.json ../tools/challenge-helper-scripts/delete-task",
|
||||
"lint": "ts-node --project ../tsconfig.json lint-localized",
|
||||
"repair-meta": "cross-env CALLING_DIR=$INIT_CWD ts-node --project ../tsconfig.json ../tools/challenge-helper-scripts/repair-meta",
|
||||
"reorder-tasks": "cross-env CALLING_DIR=$INIT_CWD ts-node --project ../tsconfig.json ../tools/challenge-helper-scripts/reorder-tasks",
|
||||
"update-challenge-order": "cross-env CALLING_DIR=$INIT_CWD ts-node --project ../tsconfig.json ../tools/challenge-helper-scripts/update-challenge-order",
|
||||
"update-step-titles": "cross-env CALLING_DIR=$INIT_CWD ts-node --project ../tsconfig.json ../tools/challenge-helper-scripts/update-step-titles",
|
||||
"repair-meta": "CALLING_DIR=$INIT_CWD ts-node --project ../tsconfig.json ../tools/challenge-helper-scripts/repair-meta",
|
||||
"reorder-tasks": "CALLING_DIR=$INIT_CWD ts-node --project ../tsconfig.json ../tools/challenge-helper-scripts/reorder-tasks",
|
||||
"update-challenge-order": "CALLING_DIR=$INIT_CWD ts-node --project ../tsconfig.json ../tools/challenge-helper-scripts/update-challenge-order",
|
||||
"update-step-titles": "CALLING_DIR=$INIT_CWD ts-node --project ../tsconfig.json ../tools/challenge-helper-scripts/update-step-titles",
|
||||
"test": "ts-node ./node_modules/mocha/bin/mocha.js --delay --exit --reporter progress --bail",
|
||||
"test:full-output": "cross-env FULL_OUTPUT=true ts-node ./node_modules/mocha/bin/mocha.js --delay --reporter progress"
|
||||
"test:full-output": "FULL_OUTPUT=true ts-node ./node_modules/mocha/bin/mocha.js --delay --reporter progress"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "7.23.7",
|
||||
@@ -51,7 +51,6 @@
|
||||
"babel-preset-react": "6.24.1",
|
||||
"babel-preset-stage-0": "6.24.1",
|
||||
"chai": "4.4.1",
|
||||
"cross-env": "7.0.3",
|
||||
"css": "3.0.0",
|
||||
"glob": "8.1.0",
|
||||
"invariant": "2.2.4",
|
||||
|
||||
11
package.json
11
package.json
@@ -58,11 +58,11 @@
|
||||
"preseed": "npm-run-all create:shared",
|
||||
"playwright:install-build-tools": "npx playwright install --with-deps",
|
||||
"rename-challenges": "ts-node tools/challenge-helper-scripts/rename-challenge-files.ts",
|
||||
"seed": "pnpm seed:surveys && pnpm seed:exams && cross-env DEBUG=fcc:* node ./tools/scripts/seed/seed-demo-user",
|
||||
"seed:certified-user": "pnpm seed:surveys && pnpm seed:exams && pnpm seed:ms-username && cross-env DEBUG=fcc:* node ./tools/scripts/seed/seed-demo-user certified-user",
|
||||
"seed:exams": "cross-env DEBUG=fcc:* node tools/scripts/seed-exams/create-exams",
|
||||
"seed:surveys": "cross-env DEBUG=fcc:* node ./tools/scripts/seed/seed-surveys",
|
||||
"seed:ms-username": "cross-env DEBUG=fcc:* node ./tools/scripts/seed/seed-ms-username",
|
||||
"seed": "pnpm seed:surveys && pnpm seed:exams && DEBUG=fcc:* node ./tools/scripts/seed/seed-demo-user",
|
||||
"seed:certified-user": "pnpm seed:surveys && pnpm seed:exams && pnpm seed:ms-username && DEBUG=fcc:* node ./tools/scripts/seed/seed-demo-user certified-user",
|
||||
"seed:exams": "DEBUG=fcc:* node tools/scripts/seed-exams/create-exams",
|
||||
"seed:surveys": "DEBUG=fcc:* node ./tools/scripts/seed/seed-surveys",
|
||||
"seed:ms-username": "DEBUG=fcc:* node ./tools/scripts/seed/seed-ms-username",
|
||||
"serve:client": "cd ./client && pnpm run serve",
|
||||
"serve:client-ci": "cd ./client && pnpm run serve-ci",
|
||||
"start": "npm-run-all create:shared -p develop:server serve:client",
|
||||
@@ -104,7 +104,6 @@
|
||||
"@typescript-eslint/parser": "7.1.1",
|
||||
"babel-jest": "29.7.0",
|
||||
"babel-plugin-transform-imports": "2.0.0",
|
||||
"cross-env": "7.0.3",
|
||||
"eslint": "8.57.0",
|
||||
"eslint-config-prettier": "9.1.0",
|
||||
"eslint-import-resolver-typescript": "^3.5.5",
|
||||
|
||||
120
pnpm-lock.yaml
generated
120
pnpm-lock.yaml
generated
@@ -63,9 +63,6 @@ importers:
|
||||
babel-plugin-transform-imports:
|
||||
specifier: 2.0.0
|
||||
version: 2.0.0
|
||||
cross-env:
|
||||
specifier: 7.0.3
|
||||
version: 7.0.3
|
||||
eslint:
|
||||
specifier: 8.57.0
|
||||
version: 8.57.0
|
||||
@@ -313,9 +310,6 @@ importers:
|
||||
cors:
|
||||
specifier: 2.8.5
|
||||
version: 2.8.5
|
||||
cross-env:
|
||||
specifier: 7.0.3
|
||||
version: 7.0.3
|
||||
csurf:
|
||||
specifier: 1.11.0
|
||||
version: 1.11.0
|
||||
@@ -882,9 +876,6 @@ importers:
|
||||
core-js:
|
||||
specifier: 2.6.12
|
||||
version: 2.6.12
|
||||
cross-env:
|
||||
specifier: 7.0.3
|
||||
version: 7.0.3
|
||||
dotenv:
|
||||
specifier: 16.4.5
|
||||
version: 16.4.5
|
||||
@@ -969,9 +960,6 @@ importers:
|
||||
chai:
|
||||
specifier: 4.4.1
|
||||
version: 4.4.1
|
||||
cross-env:
|
||||
specifier: 7.0.3
|
||||
version: 7.0.3
|
||||
css:
|
||||
specifier: 3.0.0
|
||||
version: 3.0.0
|
||||
@@ -1094,9 +1082,6 @@ importers:
|
||||
'@uiw/react-codemirror':
|
||||
specifier: 3.2.10
|
||||
version: 3.2.10(@babel/runtime@7.23.9)(codemirror@5.65.16)(react-dom@16.14.0(react@16.14.0))(react@16.14.0)
|
||||
cross-env:
|
||||
specifier: 7.0.3
|
||||
version: 7.0.3
|
||||
eslint-plugin-react-hooks:
|
||||
specifier: 4.6.0
|
||||
version: 4.6.0(eslint@8.57.0)
|
||||
@@ -1115,9 +1100,6 @@ importers:
|
||||
bson-objectid:
|
||||
specifier: 2.0.4
|
||||
version: 2.0.4
|
||||
cross-env:
|
||||
specifier: 7.0.3
|
||||
version: 7.0.3
|
||||
glob:
|
||||
specifier: ^8.1.0
|
||||
version: 8.1.0
|
||||
@@ -1281,7 +1263,7 @@ importers:
|
||||
version: 4.17.12
|
||||
babel-loader:
|
||||
specifier: 8.3.0
|
||||
version: 8.3.0(@babel/core@7.23.7)(webpack@5.90.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.1)(webpack@5.90.3)))
|
||||
version: 8.3.0(@babel/core@7.23.7)(webpack@5.90.3(webpack-cli@4.10.0))
|
||||
buffer:
|
||||
specifier: 6.0.3
|
||||
version: 6.0.3
|
||||
@@ -1290,10 +1272,10 @@ importers:
|
||||
version: 4.4.1
|
||||
copy-webpack-plugin:
|
||||
specifier: 9.1.0
|
||||
version: 9.1.0(webpack@5.90.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.1)(webpack@5.90.3)))
|
||||
version: 9.1.0(webpack@5.90.3(webpack-cli@4.10.0))
|
||||
css-loader:
|
||||
specifier: ^6.8.1
|
||||
version: 6.8.1(webpack@5.90.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.1)(webpack@5.90.3)))
|
||||
version: 6.8.1(webpack@5.90.3(webpack-cli@4.10.0))
|
||||
enzyme:
|
||||
specifier: 3.11.0
|
||||
version: 3.11.0
|
||||
@@ -1317,13 +1299,13 @@ importers:
|
||||
version: 0.11.1
|
||||
style-loader:
|
||||
specifier: ^3.3.3
|
||||
version: 3.3.3(webpack@5.90.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.1)(webpack@5.90.3)))
|
||||
version: 3.3.3(webpack@5.90.3(webpack-cli@4.10.0))
|
||||
util:
|
||||
specifier: 0.12.5
|
||||
version: 0.12.5
|
||||
webpack:
|
||||
specifier: 5.90.3
|
||||
version: 5.90.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.1)(webpack@5.90.3))
|
||||
version: 5.90.3(webpack-cli@4.10.0)
|
||||
webpack-cli:
|
||||
specifier: 4.10.0
|
||||
version: 4.10.0(webpack-bundle-analyzer@4.10.1)(webpack@5.90.3)
|
||||
@@ -6273,11 +6255,6 @@ packages:
|
||||
create-require@1.1.1:
|
||||
resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==}
|
||||
|
||||
cross-env@7.0.3:
|
||||
resolution: {integrity: sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==}
|
||||
engines: {node: '>=10.14', npm: '>=6', yarn: '>=1'}
|
||||
hasBin: true
|
||||
|
||||
cross-fetch@3.1.4:
|
||||
resolution: {integrity: sha512-1eAtFWdIubi6T4XPy6ei9iUFoKpUkIF971QLN8lIvvvwueI65+Nw5haMNKUwfJxabqlIIDODJKGrQ66gxC0PbQ==}
|
||||
|
||||
@@ -11883,10 +11860,6 @@ packages:
|
||||
resolution: {integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==}
|
||||
engines: {node: '>=10'}
|
||||
|
||||
resolve@1.22.6:
|
||||
resolution: {integrity: sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw==}
|
||||
hasBin: true
|
||||
|
||||
resolve@1.22.8:
|
||||
resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
|
||||
hasBin: true
|
||||
@@ -18412,7 +18385,7 @@ snapshots:
|
||||
dependencies:
|
||||
'@types/node': 20.8.0
|
||||
tapable: 2.2.1
|
||||
webpack: 5.90.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.1)(webpack@5.90.3))
|
||||
webpack: 5.90.3(webpack-cli@4.10.0)
|
||||
transitivePeerDependencies:
|
||||
- '@swc/core'
|
||||
- esbuild
|
||||
@@ -19772,15 +19745,6 @@ snapshots:
|
||||
schema-utils: 2.7.1
|
||||
webpack: 5.90.3(webpack-cli@4.10.0)
|
||||
|
||||
babel-loader@8.3.0(@babel/core@7.23.7)(webpack@5.90.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.1)(webpack@5.90.3))):
|
||||
dependencies:
|
||||
'@babel/core': 7.23.7
|
||||
find-cache-dir: 3.3.2
|
||||
loader-utils: 2.0.4
|
||||
make-dir: 3.1.0
|
||||
schema-utils: 2.7.1
|
||||
webpack: 5.90.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.1)(webpack@5.90.3))
|
||||
|
||||
babel-loader@8.3.0(@babel/core@7.23.7)(webpack@5.90.3(webpack-cli@4.10.0)):
|
||||
dependencies:
|
||||
'@babel/core': 7.23.7
|
||||
@@ -19839,7 +19803,7 @@ snapshots:
|
||||
dependencies:
|
||||
'@babel/runtime': 7.23.9
|
||||
cosmiconfig: 7.1.0
|
||||
resolve: 1.22.6
|
||||
resolve: 1.22.8
|
||||
|
||||
babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.18.0):
|
||||
dependencies:
|
||||
@@ -21318,16 +21282,6 @@ snapshots:
|
||||
|
||||
copy-descriptor@0.1.1: {}
|
||||
|
||||
copy-webpack-plugin@9.1.0(webpack@5.90.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.1)(webpack@5.90.3))):
|
||||
dependencies:
|
||||
fast-glob: 3.3.1
|
||||
glob-parent: 6.0.2
|
||||
globby: 11.1.0
|
||||
normalize-path: 3.0.0
|
||||
schema-utils: 3.3.0
|
||||
serialize-javascript: 6.0.1
|
||||
webpack: 5.90.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.1)(webpack@5.90.3))
|
||||
|
||||
copy-webpack-plugin@9.1.0(webpack@5.90.3(webpack-cli@4.10.0)):
|
||||
dependencies:
|
||||
fast-glob: 3.3.1
|
||||
@@ -21446,10 +21400,6 @@ snapshots:
|
||||
|
||||
create-require@1.1.1: {}
|
||||
|
||||
cross-env@7.0.3:
|
||||
dependencies:
|
||||
cross-spawn: 7.0.3
|
||||
|
||||
cross-fetch@3.1.4:
|
||||
dependencies:
|
||||
node-fetch: 2.6.1
|
||||
@@ -21510,7 +21460,7 @@ snapshots:
|
||||
semver: 7.6.0
|
||||
webpack: 5.90.3(webpack-cli@4.10.0)
|
||||
|
||||
css-loader@6.8.1(webpack@5.90.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.1)(webpack@5.90.3))):
|
||||
css-loader@6.8.1(webpack@5.90.3(webpack-cli@4.10.0)):
|
||||
dependencies:
|
||||
icss-utils: 5.1.0(postcss@8.4.35)
|
||||
postcss: 8.4.35
|
||||
@@ -21520,7 +21470,7 @@ snapshots:
|
||||
postcss-modules-values: 4.0.0(postcss@8.4.35)
|
||||
postcss-value-parser: 4.2.0
|
||||
semver: 7.5.4
|
||||
webpack: 5.90.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.1)(webpack@5.90.3))
|
||||
webpack: 5.90.3(webpack-cli@4.10.0)
|
||||
|
||||
css-mediaquery@0.1.2: {}
|
||||
|
||||
@@ -29010,12 +28960,6 @@ snapshots:
|
||||
|
||||
resolve.exports@2.0.2: {}
|
||||
|
||||
resolve@1.22.6:
|
||||
dependencies:
|
||||
is-core-module: 2.13.1
|
||||
path-parse: 1.0.7
|
||||
supports-preserve-symlinks-flag: 1.0.0
|
||||
|
||||
resolve@1.22.8:
|
||||
dependencies:
|
||||
is-core-module: 2.13.1
|
||||
@@ -29955,9 +29899,9 @@ snapshots:
|
||||
schema-utils: 3.3.0
|
||||
webpack: 5.90.3(webpack-cli@4.10.0)
|
||||
|
||||
style-loader@3.3.3(webpack@5.90.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.1)(webpack@5.90.3))):
|
||||
style-loader@3.3.3(webpack@5.90.3(webpack-cli@4.10.0)):
|
||||
dependencies:
|
||||
webpack: 5.90.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.1)(webpack@5.90.3))
|
||||
webpack: 5.90.3(webpack-cli@4.10.0)
|
||||
|
||||
style-to-object@0.3.0:
|
||||
dependencies:
|
||||
@@ -30093,15 +30037,6 @@ snapshots:
|
||||
|
||||
term-size@2.2.1: {}
|
||||
|
||||
terser-webpack-plugin@5.3.10(webpack@5.90.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.1)(webpack@5.90.3))):
|
||||
dependencies:
|
||||
'@jridgewell/trace-mapping': 0.3.22
|
||||
jest-worker: 27.5.1
|
||||
schema-utils: 3.3.0
|
||||
serialize-javascript: 6.0.1
|
||||
terser: 5.28.1
|
||||
webpack: 5.90.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.1)(webpack@5.90.3))
|
||||
|
||||
terser-webpack-plugin@5.3.10(webpack@5.90.3(webpack-cli@4.10.0)):
|
||||
dependencies:
|
||||
'@jridgewell/trace-mapping': 0.3.22
|
||||
@@ -31032,39 +30967,6 @@ snapshots:
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
webpack@5.90.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.1)(webpack@5.90.3)):
|
||||
dependencies:
|
||||
'@types/eslint-scope': 3.7.5
|
||||
'@types/estree': 1.0.5
|
||||
'@webassemblyjs/ast': 1.11.6
|
||||
'@webassemblyjs/wasm-edit': 1.11.6
|
||||
'@webassemblyjs/wasm-parser': 1.11.6
|
||||
acorn: 8.10.0
|
||||
acorn-import-assertions: 1.9.0(acorn@8.10.0)
|
||||
browserslist: 4.22.2
|
||||
chrome-trace-event: 1.0.3
|
||||
enhanced-resolve: 5.15.0
|
||||
es-module-lexer: 1.3.1
|
||||
eslint-scope: 5.1.1
|
||||
events: 3.3.0
|
||||
glob-to-regexp: 0.4.1
|
||||
graceful-fs: 4.2.11
|
||||
json-parse-even-better-errors: 2.3.1
|
||||
loader-runner: 4.3.0
|
||||
mime-types: 2.1.35
|
||||
neo-async: 2.6.2
|
||||
schema-utils: 3.3.0
|
||||
tapable: 2.2.1
|
||||
terser-webpack-plugin: 5.3.10(webpack@5.90.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.1)(webpack@5.90.3)))
|
||||
watchpack: 2.4.0
|
||||
webpack-sources: 3.2.3
|
||||
optionalDependencies:
|
||||
webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.1)(webpack@5.90.3)
|
||||
transitivePeerDependencies:
|
||||
- '@swc/core'
|
||||
- esbuild
|
||||
- uglify-js
|
||||
|
||||
webpack@5.90.3(webpack-cli@4.10.0):
|
||||
dependencies:
|
||||
'@types/eslint-scope': 3.7.5
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
"vite-tsconfig-paths": "4.2.1"
|
||||
},
|
||||
"scripts": {
|
||||
"start": "cross-env PORT=3300 vite",
|
||||
"start": "PORT=3300 vite",
|
||||
"lint": "eslint src",
|
||||
"build": "tsc && vite build",
|
||||
"test": "echo \"no tests here yet\"",
|
||||
@@ -24,7 +24,6 @@
|
||||
"@types/react": "16.14.56",
|
||||
"@types/react-dom": "16.9.24",
|
||||
"@uiw/react-codemirror": "3.2.10",
|
||||
"cross-env": "7.0.3",
|
||||
"eslint-plugin-react-hooks": "4.6.0",
|
||||
"shx": "0.3.4"
|
||||
}
|
||||
|
||||
@@ -26,7 +26,6 @@
|
||||
"@types/glob": "^8.0.1",
|
||||
"@types/inquirer": "^8.2.5",
|
||||
"bson-objectid": "2.0.4",
|
||||
"cross-env": "7.0.3",
|
||||
"glob": "^8.1.0",
|
||||
"gray-matter": "4.0.3",
|
||||
"inquirer": "8.2.6",
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"build": "cross-env NODE_OPTIONS=\"--max-old-space-size=7168\" webpack -c webpack.config.js"
|
||||
"build": "NODE_OPTIONS=\"--max-old-space-size=7168\" webpack -c webpack.config.js"
|
||||
},
|
||||
"keywords": [],
|
||||
"devDependencies": {
|
||||
|
||||
Reference in New Issue
Block a user