Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10,079 changes: 2,086 additions & 7,993 deletions AnimalRequests/package-lock.json

Large diffs are not rendered by default.

14 changes: 5 additions & 9 deletions AnimalRequests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
"private": true,
"scripts": {
"build": "npm run build-dev",
"build-dev": "npm run clean && cross-env NODE_ENV=development webpack --config node_modules/@labkey/build/webpack/dev.config.js --color",
"build-prod": "npm run clean && cross-env NODE_ENV=production webpack --config node_modules/@labkey/build/webpack/prod.config.js --color --progress --profile",
"build-dev": "npm run clean && cross-env NODE_ENV=development rspack build --config node_modules/@labkey/build/configs/dev.config.js",
"build-prod": "npm run clean && cross-env NODE_ENV=production rspack build --config node_modules/@labkey/build/configs/prod.config.js",
"setup": "npm ci --legacy-peer-deps",
"start": "cross-env NODE_ENV=development webpack serve --config node_modules/@labkey/build/webpack/watch.config.js",
"start": "cross-env NODE_ENV=development rspack serve --config node_modules/@labkey/build/configs/watch.config.js",
"clean": "rimraf resources/web/AnimalRequests/gen && rimraf resources/views/gen && rimraf resources/web/gen"
},
"author": "csebranek",
Expand All @@ -28,12 +28,8 @@
"react-final-form-listeners": "1.0.3"
},
"devDependencies": {
"@labkey/build": "9.1.5",
"@labkey/build": "10.0.1-fb-update-nodejs.1",
"@types/react": "18.3.31",
"@types/react-dom": "18.3.7",
"uuid": "14.0.1"
},
"overrides": {
"uuid": "14.0.1"
"@types/react-dom": "18.3.7"
}
}
2 changes: 1 addition & 1 deletion AnimalRequests/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "./node_modules/@labkey/build/webpack/tsconfig.json",
"extends": "./node_modules/@labkey/build/configs/tsconfig.json",
"include": ["src/client/**/*"],
"exclude": ["node_modules"],
}
Loading