Server/project/package.json

85 lines
2.9 KiB
JSON
Raw Normal View History

2023-03-03 16:23:46 +01:00
{
"name": "aki-server",
"version": "3.5.1",
2023-03-03 16:23:46 +01:00
"author": "SPT-AKI",
"license": "NCSA",
"main": "obj/bundle.js",
"repository": "https://dev.sp-tarkov.com/SPT-AKI/Server",
"description": "Modding framework for Escape From Tarkov",
"icon": "assets/images/icon.ico",
"engines": {
"node": "16.17.1"
},
"scripts": {
"profilerCompile": "tsc -p test_tsconfig.json",
"run:profiler": "npm run profilerCompile && node --prof --inspect --trace-warnings obj/ide/TestEntry.js",
"check:circular": "npx madge --circular --extensions ts ./src/",
"lint": "rome ci src --formatter-enabled=false --max-diagnostics=200",
"lint:fix": "eslint --fix --ext .ts src/**",
"test:debug": "gulp test:debug",
"test:run": "jest --colors --runInBand",
"test:coverage": "jest --coverage --maxWorkers=1 --no-cache",
"build:release": "cross-env PKG_CACHE_PATH=\"./.pkg-cache\" gulp gen:release",
"build:debug": "cross-env PKG_CACHE_PATH=\"./.pkg-cache\" gulp gen:debug",
"build:bleeding": "cross-env PKG_CACHE_PATH=\"./.pkg-cache\" gulp gen:bleeding",
"gen:types": "tsc -p typedef_tsconfig.json",
"gen:docs": "typedoc --options ./typedoc.json --entryPointStrategy expand ./src",
"run:server": "gulp run:server"
},
"dependencies": {
"atomically": "1.7.0",
"i18n": "0.15.1",
"jshint": "2.13.6",
"json-fixer": "1.6.15",
"proper-lockfile": "4.1.2",
"reflect-metadata": "0.1.13",
"semver": "7.3.8",
"source-map-support": "0.5.21",
"tsyringe": "4.7.0",
"typedoc": "0.23.23",
"typescript": "4.9.4",
"winston": "3.8.2",
"winston-daily-rotate-file": "4.7.1",
"ws": "8.11.0"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@jest/globals": "29.3.1",
"@swc/cli": "0.1.59",
"@swc/core": "1.3.27",
"@swc/jest": "0.2.24",
"@types/i18n": "0.13.6",
"@types/jest": "29.1.2",
"@types/node": "16.18.10",
"@types/proper-lockfile": "4.1.2",
"@types/semver": "7.3.13",
"@types/ws": "8.5.3",
"@typescript-eslint/eslint-plugin": "5.46.1",
"@typescript-eslint/parser": "5.46.1",
"cross-env": "7.0.3",
"del": "7.0.0",
"eslint": "8.30.0",
"fs-extra": "11.1.0",
"gulp": "4.0.2",
"gulp-execa": "4.4.1",
"gulp-rename": "2.0.0",
"jest": "29.3.1",
"madge": "5.0.1",
"pkg": "5.8.0",
"pkg-fetch": "3.4.2",
"rcedit": "3.0.1",
"rome": "11.0.0",
"ts-jest": "29.0.5",
"ts-node-dev": "2.0.0",
"tsconfig-paths": "4.1.2",
"typemoq": "2.1.0",
"utf-8-validate": "5.0.10"
},
"targets": {
"default": {
"includeNodeModules": true
}
}
}