mirror of
https://github.com/PCSX2/web-api.git
synced 2026-01-31 01:15:16 +01:00
49 lines
1.2 KiB
JSON
49 lines
1.2 KiB
JSON
{
|
|
"name": "pcsx2-webapi",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"serve": "ts-node -r dotenv/config index.ts",
|
|
"build": "tsc -p .",
|
|
"start": "node -r dotenv/config ./dist/index.js dotenv_config_path=./.env",
|
|
"format": "npx prettier --write .",
|
|
"lint": "npx eslint ./"
|
|
},
|
|
"engines": {
|
|
"node": "16.x"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"@octokit/graphql": "^4.8.0",
|
|
"@octokit/plugin-retry": "^3.0.9",
|
|
"@octokit/plugin-throttling": "^3.5.2",
|
|
"@octokit/rest": "^18.12.0",
|
|
"@octokit/types": "^6.31.3",
|
|
"compression": "^1.7.4",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^10.0.0",
|
|
"express": "^4.17.1",
|
|
"express-rate-limit": "^5.5.1",
|
|
"striptags": "^3.2.0",
|
|
"uuid": "^8.3.2",
|
|
"winston": "^3.3.3",
|
|
"winston-loki": "^6.0.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/compression": "^1.7.2",
|
|
"@types/cors": "^2.8.12",
|
|
"@types/express": "^4.17.13",
|
|
"@types/node": "^16.11.7",
|
|
"@types/uuid": "^8.3.1",
|
|
"@typescript-eslint/eslint-plugin": "^5.3.1",
|
|
"@typescript-eslint/parser": "^5.3.1",
|
|
"eslint": "^8.2.0",
|
|
"prettier": "2.4.1",
|
|
"ts-node": "^10.4.0",
|
|
"typescript": "^4.4.4"
|
|
}
|
|
}
|