Add clear-modules script to package.json files

This commit is contained in:
Simon Larsen 2023-11-22 11:13:15 +00:00
parent c7622bb7f3
commit 727f923dbb
No known key found for this signature in database
GPG Key ID: AB45983AA9C81CDE
19 changed files with 18 additions and 6 deletions

View File

@ -11,7 +11,6 @@
"Common": "file:../Common", "Common": "file:../Common",
"CommonServer": "file:../CommonServer", "CommonServer": "file:../CommonServer",
"CommonUI": "file:../CommonUI", "CommonUI": "file:../CommonUI",
"crypto-js": "^4.2.0",
"formik": "^2.4.5", "formik": "^2.4.5",
"Model": "file:../Model", "Model": "file:../Model",
"react": "^18.1.0", "react": "^18.1.0",
@ -7081,11 +7080,6 @@
"node": ">= 8" "node": ">= 8"
} }
}, },
"node_modules/crypto-js": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/crypto-js/-/crypto-js-4.2.0.tgz",
"integrity": "sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q=="
},
"node_modules/crypto-random-string": { "node_modules/crypto-random-string": {
"version": "2.0.0", "version": "2.0.0",
"resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz",

View File

@ -20,6 +20,7 @@
"build": "webpack build --mode=production", "build": "webpack build --mode=production",
"test": "", "test": "",
"compile": "tsc", "compile": "tsc",
"clear-modules": "rm -rf node_modules && rm package-lock.json && npm install",
"start": "node --require ts-node/register Serve.ts", "start": "node --require ts-node/register Serve.ts",
"audit": "npm audit --audit-level=low", "audit": "npm audit --audit-level=low",
"configure": "npx npm-force-resolutions || echo 'No package-lock.json file. Skipping force resolutions'", "configure": "npx npm-force-resolutions || echo 'No package-lock.json file. Skipping force resolutions'",

View File

@ -29,6 +29,7 @@
"test": "react-app-rewired test", "test": "react-app-rewired test",
"eject": "webpack eject", "eject": "webpack eject",
"compile": "tsc", "compile": "tsc",
"clear-modules": "rm -rf node_modules && rm package-lock.json && npm install",
"start": "node --require ts-node/register Serve.ts", "start": "node --require ts-node/register Serve.ts",
"audit": "npm audit --audit-level=low", "audit": "npm audit --audit-level=low",
"configure": "npx npm-force-resolutions || echo 'No package-lock.json file. Skipping force resolutions'", "configure": "npx npm-force-resolutions || echo 'No package-lock.json file. Skipping force resolutions'",

View File

@ -5,6 +5,7 @@
"configure": "npx npm-force-resolutions || echo 'No package-lock.json file. Skipping force resolutions'", "configure": "npx npm-force-resolutions || echo 'No package-lock.json file. Skipping force resolutions'",
"start": "node --require ts-node/register Index.ts", "start": "node --require ts-node/register Index.ts",
"compile": "tsc", "compile": "tsc",
"clear-modules": "rm -rf node_modules && rm package-lock.json && npm install",
"dev": "npx nodemon", "dev": "npx nodemon",
"test": "jest --detectOpenHandles", "test": "jest --detectOpenHandles",
"coverage": "jest --detectOpenHandles --coverage", "coverage": "jest --detectOpenHandles --coverage",

View File

@ -5,6 +5,7 @@
"main": "index.ts", "main": "index.ts",
"scripts": { "scripts": {
"compile": "tsc", "compile": "tsc",
"clear-modules": "rm -rf node_modules && rm package-lock.json && npm install",
"test": "jest --detectOpenHandles", "test": "jest --detectOpenHandles",
"coverage": "jest --detectOpenHandles --coverage", "coverage": "jest --detectOpenHandles --coverage",
"debug:test": "cd .. && export $(grep -v '^#' config.env | xargs) && cd CommonServer && node --inspect node_modules/.bin/jest --runInBand ./Tests --detectOpenHandles" "debug:test": "cd .. && export $(grep -v '^#' config.env | xargs) && cd CommonServer && node --inspect node_modules/.bin/jest --runInBand ./Tests --detectOpenHandles"

View File

@ -29,6 +29,7 @@
"test": "react-app-rewired test", "test": "react-app-rewired test",
"eject": "webpack eject", "eject": "webpack eject",
"compile": "tsc", "compile": "tsc",
"clear-modules": "rm -rf node_modules && rm package-lock.json && npm install",
"start": "node --require ts-node/register Serve.ts", "start": "node --require ts-node/register Serve.ts",
"audit": "npm audit --audit-level=low", "audit": "npm audit --audit-level=low",
"configure": "npx npm-force-resolutions || echo 'No package-lock.json file. Skipping force resolutions'", "configure": "npx npm-force-resolutions || echo 'No package-lock.json file. Skipping force resolutions'",

View File

@ -6,6 +6,7 @@
"scripts": { "scripts": {
"start": "node --require ts-node/register Index.ts", "start": "node --require ts-node/register Index.ts",
"compile": "tsc", "compile": "tsc",
"clear-modules": "rm -rf node_modules && rm package-lock.json && npm install",
"dev": "npx nodemon", "dev": "npx nodemon",
"audit": "npm audit --audit-level=low", "audit": "npm audit --audit-level=low",
"dep-check": "depcheck ./ --skip-missing=true", "dep-check": "depcheck ./ --skip-missing=true",

View File

@ -6,6 +6,7 @@
"scripts": { "scripts": {
"start": "node --require ts-node/register Index.ts", "start": "node --require ts-node/register Index.ts",
"compile": "tsc", "compile": "tsc",
"clear-modules": "rm -rf node_modules && rm package-lock.json && npm install",
"dev": "npx nodemon", "dev": "npx nodemon",
"audit": "npm audit --audit-level=low", "audit": "npm audit --audit-level=low",
"dep-check": "depcheck ./ --skip-missing=true", "dep-check": "depcheck ./ --skip-missing=true",

View File

@ -5,6 +5,7 @@
"configure": "npx npm-force-resolutions || echo 'No package-lock.json file. Skipping force resolutions'", "configure": "npx npm-force-resolutions || echo 'No package-lock.json file. Skipping force resolutions'",
"start": "node --require ts-node/register Index.ts", "start": "node --require ts-node/register Index.ts",
"compile": "tsc", "compile": "tsc",
"clear-modules": "rm -rf node_modules && rm package-lock.json && npm install",
"dev": "npx nodemon", "dev": "npx nodemon",
"test": "jest --detectOpenHandles", "test": "jest --detectOpenHandles",
"coverage": "jest --detectOpenHandles --coverage", "coverage": "jest --detectOpenHandles --coverage",

View File

@ -6,6 +6,7 @@
"scripts": { "scripts": {
"start": "node --require ts-node/register Index.ts", "start": "node --require ts-node/register Index.ts",
"compile": "tsc", "compile": "tsc",
"clear-modules": "rm -rf node_modules && rm package-lock.json && npm install",
"dev": "npx nodemon", "dev": "npx nodemon",
"audit": "npm audit --audit-level=low", "audit": "npm audit --audit-level=low",
"dep-check": "depcheck ./ --skip-missing=true", "dep-check": "depcheck ./ --skip-missing=true",

View File

@ -6,6 +6,7 @@
"scripts": { "scripts": {
"start": "node --require ts-node/register Index.ts", "start": "node --require ts-node/register Index.ts",
"compile": "tsc", "compile": "tsc",
"clear-modules": "rm -rf node_modules && rm package-lock.json && npm install",
"dev": "npx nodemon", "dev": "npx nodemon",
"audit": "npm audit --audit-level=low", "audit": "npm audit --audit-level=low",
"dep-check": "depcheck ./ --skip-missing=true", "dep-check": "depcheck ./ --skip-missing=true",

View File

@ -6,6 +6,7 @@
"scripts": { "scripts": {
"start": "node --require ts-node/register Index.ts", "start": "node --require ts-node/register Index.ts",
"compile": "tsc", "compile": "tsc",
"clear-modules": "rm -rf node_modules && rm package-lock.json && npm install",
"dev": "npx nodemon", "dev": "npx nodemon",
"audit": "npm audit --audit-level=low", "audit": "npm audit --audit-level=low",
"dep-check": "depcheck ./ --skip-missing=true", "dep-check": "depcheck ./ --skip-missing=true",

View File

@ -6,6 +6,7 @@
"scripts": { "scripts": {
"start": "node --require ts-node/register Index.ts", "start": "node --require ts-node/register Index.ts",
"compile": "tsc", "compile": "tsc",
"clear-modules": "rm -rf node_modules && rm package-lock.json && npm install",
"dev": "npx nodemon", "dev": "npx nodemon",
"audit": "npm audit --audit-level=low", "audit": "npm audit --audit-level=low",
"dep-check": "depcheck ./ --skip-missing=true", "dep-check": "depcheck ./ --skip-missing=true",

View File

@ -6,6 +6,7 @@
"scripts": { "scripts": {
"start": "node --require ts-node/register Index.ts", "start": "node --require ts-node/register Index.ts",
"compile": "tsc", "compile": "tsc",
"clear-modules": "rm -rf node_modules && rm package-lock.json && npm install",
"dev": "npx nodemon", "dev": "npx nodemon",
"test": "echo 'no tests'" "test": "echo 'no tests'"
}, },

View File

@ -6,6 +6,7 @@
"scripts": { "scripts": {
"start": "node --require ts-node/register Index.ts", "start": "node --require ts-node/register Index.ts",
"compile": "tsc", "compile": "tsc",
"clear-modules": "rm -rf node_modules && rm package-lock.json && npm install",
"dev": "npx nodemon", "dev": "npx nodemon",
"audit": "npm audit --audit-level=low", "audit": "npm audit --audit-level=low",
"dep-check": "depcheck ./ --skip-missing=true", "dep-check": "depcheck ./ --skip-missing=true",

View File

@ -23,6 +23,7 @@
"build": "webpack build --mode=production", "build": "webpack build --mode=production",
"test": "", "test": "",
"compile": "tsc", "compile": "tsc",
"clear-modules": "rm -rf node_modules && rm package-lock.json && npm install",
"start": "node --require ts-node/register Serve.ts", "start": "node --require ts-node/register Serve.ts",
"audit": "npm audit --audit-level=low", "audit": "npm audit --audit-level=low",
"configure": "npx npm-force-resolutions || echo 'No package-lock.json file. Skipping force resolutions'", "configure": "npx npm-force-resolutions || echo 'No package-lock.json file. Skipping force resolutions'",

View File

@ -6,6 +6,7 @@
"scripts": { "scripts": {
"start": "node --require ts-node/register Index.ts", "start": "node --require ts-node/register Index.ts",
"compile": "tsc", "compile": "tsc",
"clear-modules": "rm -rf node_modules && rm package-lock.json && npm install",
"dev": "npx nodemon", "dev": "npx nodemon",
"audit": "npm audit --audit-level=low", "audit": "npm audit --audit-level=low",
"dep-check": "depcheck ./ --skip-missing=true", "dep-check": "depcheck ./ --skip-missing=true",

View File

@ -6,6 +6,7 @@
"scripts": { "scripts": {
"start": "node --require ts-node/register Index.ts", "start": "node --require ts-node/register Index.ts",
"compile": "tsc", "compile": "tsc",
"clear-modules": "rm -rf node_modules && rm package-lock.json && npm install",
"dev": "npx nodemon", "dev": "npx nodemon",
"audit": "npm audit --audit-level=low", "audit": "npm audit --audit-level=low",
"dep-check": "depcheck ./ --skip-missing=true", "dep-check": "depcheck ./ --skip-missing=true",

View File

@ -6,6 +6,7 @@
"scripts": { "scripts": {
"start": "node --require ts-node/register Index.ts", "start": "node --require ts-node/register Index.ts",
"compile": "tsc", "compile": "tsc",
"clear-modules": "rm -rf node_modules && rm package-lock.json && npm install",
"dev": "npx nodemon", "dev": "npx nodemon",
"audit": "npm audit --audit-level=low", "audit": "npm audit --audit-level=low",
"dep-check": "depcheck ./ --skip-missing=true", "dep-check": "depcheck ./ --skip-missing=true",