This repository was archived by the owner on Jan 30, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.24 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.24 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
{
"type": "module",
"dependencies": {
"@constl/orbit-db-types": "^1.2.9",
"@elysiajs/cors": "^1.2.0",
"@elysiajs/static": "^1.2.0",
"@elysiajs/swagger": "^1.2.0",
"@gorillapool/js-junglebus": "^0.4.4",
"@napi-rs/canvas": "^0.1.65",
"@orbitdb/core": "^1.0.2",
"@types/react": "^19.0.8",
"bmapjs": "^0.4.0-beta.63",
"bpu-ts": "^0.0.26",
"chalk": "^5.4.1",
"chart.js": "^4.4.7",
"cli-spinner": "^0.2.10",
"elysia": "^1.2.10",
"lodash": "^4.17.21",
"mongodb": "^6.12.0",
"node-persist": "^3.1.3",
"quickchart-js": "^3.1.3",
"react": "^19.0.0",
"redis": "^4.7.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "^1.2.1",
"@types/lodash": "^4.17.15",
"@types/node-persist": "^3.1.8",
"dotenv": "^16.4.7"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"scripts": {
"dev": "bun --watch index.ts",
"start": "bun index.ts",
"typecheck": "bun --bun tsc --noEmit",
"lint": "bunx @biomejs/biome check .",
"lint:fix": "bunx @biomejs/biome check --write .",
"test-redis": "bun scripts/test-redis.ts",
"prepare-hooks": "cp git-hooks/* .git/hooks/ && chmod +x .git/hooks/*"
}
}