-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.38 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.38 KB
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
{
"name": "osucomplete",
"version": "1.0.0",
"description": "A live completionist tracker and leaderboard for osu! players.",
"main": "webserver.js",
"scripts": {
"updater": "node apps/updater/index.js",
"webserver": "node apps/web/index.js",
"maintain": "node scripts/maintain.js",
"test": "node scripts/.test.js",
"format": "npx prettier --write ."
},
"imports": {
"#env": "./config/env.js",
"#db": "./database/db.js",
"#utils": "./lib/utils.js",
"#api/*": "./lib/api/*",
"#config/*": "./config/*",
"#lib/*": "./lib/*",
"#apps/*": "./apps/*",
"#database/*": "./database/*"
},
"keywords": [],
"author": "Kayla Kersting (kaysting@github)",
"license": "Apache-2.0",
"type": "commonjs",
"dependencies": {
"axios": "^1.13.2",
"better-sqlite3": "^12.4.1",
"cli-color": "^2.0.4",
"cookie-parser": "^1.4.7",
"dayjs": "^1.11.19",
"dotenv": "^17.2.3",
"ejs": "^3.1.10",
"express": "^5.1.0",
"express-rate-limit": "^8.2.1",
"express-session": "^1.18.2",
"jsonwebtoken": "^9.0.2",
"marked": "^17.0.1",
"puppeteer": "^24.34.0",
"socket.io": "^4.8.3",
"socket.io-client": "^4.8.3",
"tar": "^7.5.2",
"unbzip2-stream": "^1.4.3"
}
}