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

Merged
Sainan merged 1 commits from omit-dev into main 2025-03-09 07:41:25 -07:00
2 changed files with 6 additions and 6 deletions

View File

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

View File

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