chore: don't install dev dependencies for basic usage (#1135)

Reviewed-on: OpenWF/SpaceNinjaServer#1135
This commit is contained in:
Sainan 2025-03-09 07:41:24 -07:00
parent f6513420be
commit 6b35408144
2 changed files with 6 additions and 6 deletions

View File

@ -13,7 +13,7 @@ if exist static\data\0\ (
)
echo Updating dependencies...
call npm i
call npm i --omit=dev
call npm run build
if %errorlevel% == 0 (

View File

@ -14,27 +14,27 @@
},
"license": "GNU",
"dependencies": {
"@types/express": "^5",
"@types/morgan": "^1.9.9",
"copyfiles": "^2.4.1",
"express": "^5",
"mongoose": "^8.11.0",
"morgan": "^1.10.0",
"typescript": ">=4.7.4 <5.6.0",
"warframe-public-export-plus": "^0.5.41",
"warframe-riven-info": "^0.1.2",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@types/express": "^5",
"@types/morgan": "^1.9.9",
"@typescript-eslint/eslint-plugin": "^7.18",
"@typescript-eslint/parser": "^7.18",
"eslint": "^8.56.0",
"eslint-plugin-prettier": "^5.2.3",
"morgan": "^1.10.0",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": ">=4.7.4 <5.6.0"
"tsconfig-paths": "^4.2.0"
},
"engines": {
"node": ">=18.15.0",