Server/project/package.json

92 lines
3.1 KiB
JSON
Raw Normal View History

2023-03-03 16:23:46 +01:00
{
"name": "aki-server",
"version": "3.7.1",
"author": "SPT-AKI Server",
2023-03-03 16:23:46 +01:00
"license": "NCSA",
"main": "obj/bundle.js",
"repository": "https://dev.sp-tarkov.com/SPT-AKI/Server",
"description": "The single-player modding framework for Escape From Tarkov.",
2023-03-03 16:23:46 +01:00
"icon": "assets/images/icon.ico",
"engines": {
"node": "18.15.0"
2023-03-03 16:23:46 +01:00
},
"scripts": {
2023-11-02 00:59:12 +01:00
"check:circular": "madge --circular --ts-config tsconfig.json --extensions ts ./src/",
"lint": "biome ci src --formatter-enabled=false --max-diagnostics=200",
2023-03-03 16:23:46 +01:00
"lint:fix": "eslint --fix --ext .ts src/**",
2023-11-10 17:29:56 +01:00
"style": "dprint check --incremental=false",
"style:fix": "dprint fmt --incremental=false",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
2023-11-04 18:09:14 +01:00
"test:ui": "vitest --ui --coverage",
"build:release": "cross-env PKG_CACHE_PATH=\"./.pkg-cache\" gulp build:release",
"build:debug": "cross-env PKG_CACHE_PATH=\"./.pkg-cache\" gulp build:debug",
"build:bleeding": "cross-env PKG_CACHE_PATH=\"./.pkg-cache\" gulp build:bleeding",
"run:build": "gulp run:build",
"run:debug": "gulp run:debug",
"run:profiler": "gulp run:profiler",
"gen:types": "tsc -p tsconfig.typedef.json",
"gen:docs": "typedoc --options ./typedoc.json --entryPointStrategy expand ./src"
2023-03-03 16:23:46 +01:00
},
"dependencies": {
"atomically": "1.7.0",
"date-fns": "^2.30.0",
"date-fns-tz": "^2.0.0",
2023-03-03 16:23:46 +01:00
"i18n": "0.15.1",
"json-fixer": "1.6.15",
"json5": "2.2.3",
"jsonc": "2.0.0",
2023-03-03 16:23:46 +01:00
"proper-lockfile": "4.1.2",
"reflect-metadata": "0.1.13",
"semver": "7.5.4",
2023-03-03 16:23:46 +01:00
"source-map-support": "0.5.21",
"tsyringe": "4.8.0",
"typescript": "5.2.2",
"winston": "3.11.0",
2023-03-03 16:23:46 +01:00
"winston-daily-rotate-file": "4.7.1",
"ws": "8.14.2"
2023-03-03 16:23:46 +01:00
},
"devDependencies": {
"@biomejs/biome": "1.3.3",
"@jest/globals": "29.7.0",
"@pnpm/exe": "8.9.0",
"@swc/cli": "0.1.62",
"@swc/core": "1.3.92",
"@types/i18n": "0.13.7",
"@types/node": "18.18.4",
2023-03-03 16:23:46 +01:00
"@types/proper-lockfile": "4.1.2",
"@types/semver": "7.5.3",
"@types/ws": "8.5.7",
"@typescript-eslint/eslint-plugin": "6.7.5",
"@typescript-eslint/parser": "6.7.5",
"@vitest/coverage-istanbul": "1.0.0-beta.3",
"@vitest/ui": "1.0.0-beta.3",
2023-03-03 16:23:46 +01:00
"cross-env": "7.0.3",
2023-11-10 17:29:56 +01:00
"dprint": "0.42.5",
"eslint": "8.51.0",
2023-03-03 16:23:46 +01:00
"gulp": "4.0.2",
"gulp-execa": "5.0.1",
2023-03-03 16:23:46 +01:00
"gulp-rename": "2.0.0",
"madge": "6.1.0",
"pkg": "5.8.1",
"pkg-fetch": "3.5.2",
"resedit": "2.0.0",
2023-03-03 16:23:46 +01:00
"ts-node-dev": "2.0.0",
"tsconfig-paths": "4.2.0",
"typedoc": "0.25.2",
"typemoq": "2.1.0",
"vitest": "1.0.0-beta.3"
2023-03-03 16:23:46 +01:00
},
"overrides": {
"pkg": {
"pkg-fetch": "3.5.2"
}
},
2023-03-03 16:23:46 +01:00
"targets": {
"default": {
"includeNodeModules": true
}
}
}