add initial backend code
This commit is contained in:
@@ -0,0 +1,57 @@
|
||||
{
|
||||
"name": "vencord-settings-server",
|
||||
"private": true,
|
||||
"version": "1.0.0",
|
||||
"type": "module",
|
||||
"description": "Global settings sync server",
|
||||
"keywords": [],
|
||||
"homepage": "",
|
||||
"author": "lewisakura",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist/",
|
||||
"compile": "tsc",
|
||||
"build": "pnpm clean && pnpm compile",
|
||||
"lint": "eslint . --ext .ts",
|
||||
"lint:fix": "pnpm lint --fix",
|
||||
"test": "pnpm lint && pnpm testTsc",
|
||||
"testTsc": "tsc --noEmit"
|
||||
},
|
||||
"license": "GPL-3.0",
|
||||
"devDependencies": {
|
||||
"@types/node": "^18.13.0",
|
||||
"@typescript-eslint/eslint-plugin": "^5.52.0",
|
||||
"@typescript-eslint/parser": "^5.52.0",
|
||||
"eslint": "^8.34.0",
|
||||
"eslint-import-resolver-alias": "^1.1.2",
|
||||
"eslint-plugin-header": "^3.1.1",
|
||||
"eslint-plugin-path-alias": "^1.0.0",
|
||||
"eslint-plugin-simple-import-sort": "^10.0.0",
|
||||
"eslint-plugin-unused-imports": "^2.0.0",
|
||||
"rimraf": "^4.1.2",
|
||||
"typescript": "^4.9.5"
|
||||
},
|
||||
"packageManager": "pnpm@7.27.0",
|
||||
"pnpm": {
|
||||
"peerDependencyRules": {
|
||||
"ignoreMissing": [
|
||||
"eslint-plugin-import",
|
||||
"eslint"
|
||||
]
|
||||
},
|
||||
"allowedDeprecatedVersions": {
|
||||
"source-map-resolve": "*",
|
||||
"resolve-url": "*",
|
||||
"source-map-url": "*",
|
||||
"urix": "*"
|
||||
}
|
||||
},
|
||||
"dependencies": {
|
||||
"@fastify/cors": "^8.2.0",
|
||||
"dotenv": "^16.0.3",
|
||||
"fastify": "^4.13.0",
|
||||
"ioredis": "^5.3.1",
|
||||
"msgpackr": "^1.8.3",
|
||||
"node-fetch": "^3.3.0",
|
||||
"source-map-support": "^0.5.21"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user