forked from ezppfarm/tazer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·57 lines (57 loc) · 1.45 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
{
"name": "tazer",
"version": "0.1.0",
"description": "a osu!lazer bancho implementation made in typescript",
"main": "./src/app.ts",
"type": "module",
"scripts": {
"debug": "tsx ./app.ts",
"depcheck": "depcheck .",
"test": "tsx tests.ts",
"lint": "gts lint",
"fix": "gts fix",
"prepare": "npm run lint && npm run fix"
},
"keywords": [],
"author": "HorizonCode",
"license": "MPL-2.0",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@a73/get-all-files-ts": "^1.0.1",
"@fastify/multipart": "^7.7.3",
"@fastify/static": "^6.11.2",
"bcryptjs": "^2.4.3",
"chalk": "^5.3.0",
"dotenv": "^16.3.1",
"enquirer": "^2.4.1",
"fastify": "^4.23.2",
"ip2location-nodejs": "^9.6.0",
"knex": "^2.5.1",
"moment": "^2.29.4",
"mysql2": "^3.6.1",
"nanospinner": "^1.1.0",
"node-cache": "^5.1.2",
"node-fetch": "^3.3.2",
"rosu-pp": "^0.9.4",
"sharp": "^0.32.6",
"tcp-port-used": "^1.0.2",
"zod": "^3.22.2"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.4",
"@types/node": "^20.4.6",
"@types/tcp-port-used": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"depcheck": "^1.4.6",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"gts": "^5.0.1",
"tsx": "^3.12.10",
"typescript": "~5.1.6"
}
}