XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet

SpaceNinjaServer

A simple server for a small space ninja game

公开
关注 0 Fork 1 Star 0
返回提交历史

XFEstudio/SpaceNinjaServer

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

Reviewed-on: https://onlyg.it/OpenWF/SpaceNinjaServer/pulls/1135

6b354081
Sainan <sainan@calamity.inc>
提交于

代码差异

2 个文件 +6 -6
Modified UPDATE AND START SERVER.bat +1 -1
@@ -13,7 +13,7 @@ if exist static\data\0\ (
13 13 )
14 14
15 15 echo Updating dependencies...
16 call npm i
16 call npm i --omit=dev
17 17
18 18 call npm run build
19 19 if %errorlevel% == 0 (
Modified package.json +5 -5
@@ -14,27 +14,27 @@
14 14 },
15 15 "license": "GNU",
16 16 "dependencies": {
17 "@types/express": "^5",
18 "@types/morgan": "^1.9.9",
17 19 "copyfiles": "^2.4.1",
18 20 "express": "^5",
19 21 "mongoose": "^8.11.0",
22 "morgan": "^1.10.0",
23 "typescript": ">=4.7.4 <5.6.0",
20 24 "warframe-public-export-plus": "^0.5.41",
21 25 "warframe-riven-info": "^0.1.2",
22 26 "winston": "^3.17.0",
23 27 "winston-daily-rotate-file": "^5.0.0"
24 28 },
25 29 "devDependencies": {
26 "@types/express": "^5",
27 "@types/morgan": "^1.9.9",
28 30 "@typescript-eslint/eslint-plugin": "^7.18",
29 31 "@typescript-eslint/parser": "^7.18",
30 32 "eslint": "^8.56.0",
31 33 "eslint-plugin-prettier": "^5.2.3",
32 "morgan": "^1.10.0",
33 34 "prettier": "^3.4.2",
34 35 "ts-node": "^10.9.2",
35 36 "ts-node-dev": "^2.0.0",
36 "tsconfig-paths": "^4.2.0",
37 "typescript": ">=4.7.4 <5.6.0"
37 "tsconfig-paths": "^4.2.0"
38 38 },
39 39 "engines": {
40 40 "node": ">=18.15.0",