-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.82 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "wavebreaker",
"version": "1.0.0",
"description": "Backend of Wavebreaker, an open-source reimplementation of Audiosurf's game server",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -p tsconfig.json",
"start": "npm run build && node index.js",
"dev": "npm run build && dotenv -e .env.development -- node index.js",
"migrate:postgres": "dotenv -e .env.development -- npx prisma migrate deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AudiosurfResearch/Wavebreaker.git"
},
"keywords": [
"audiosurf",
"server",
"custom"
],
"author": "AudiosurfResearch",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/AudiosurfResearch/Wavebreaker/issues"
},
"homepage": "https://github.com/AudiosurfResearch/Wavebreaker#readme",
"devDependencies": {
"@types/node": "^20.5.9",
"@types/node-steam-openid": "^1.0.0",
"@types/steamapi": "^2.2.2",
"@types/steamid": "^2.0.1",
"@types/xml2js": "^0.4.11",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"eslint": "^8.48.0",
"pino-pretty": "^10.2.0",
"prisma": "^5.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@fastify/cookie": "^8.3.0",
"@fastify/cors": "^8.3.0",
"@fastify/formbody": "^7.0.1",
"@fastify/jwt": "^6.7.1",
"@fastify/static": "^6.10.1",
"@prisma/client": "^5.2.0",
"@sinclair/typebox": "^0.28.13",
"discord.js": "^14.13.0",
"fastify": "^4.22.0",
"fastify-https-redirect": "^1.0.4",
"ioredis": "^5.3.2",
"musicbrainz-api": "^0.10.3",
"node-steam-openid": "^1.2.0",
"steamapi": "^2.4.2",
"steamid": "^2.0.0",
"xml2js": "^0.6.2"
},
"packageManager": "[email protected]"
}