-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.13 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
{
"name": "atmosphere",
"version": "1.0.0",
"description": "Custom backend for osu!droid",
"main": "index.ts",
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc",
"serve": "node dist/index.js",
"lint": "eslint ."
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@rian8337/osu-base": "^3.3.0",
"@rian8337/osu-difficulty-calculator": "^3.3.2",
"axios": "^1.7.7",
"bcryptjs": "^2.4.3",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-promise-router": "^4.1.1",
"multer": "^1.4.5-lts.1",
"pg": "^8.12.0",
"socket.io": "^4.7.5",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/bcryptjs": "^2.4.6",
"@types/eslint__js": "^8.42.3",
"@types/express": "^4.17.21",
"@types/multer": "^1.4.12",
"@types/node": "^22.4.1",
"@types/pg": "^8.11.6",
"eslint": "^9.12.0",
"globals": "^15.10.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.8.0"
}
}