-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.39 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.39 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
{
"name": "pixelaw-server",
"description": "NodeExpress backend for \"bots\" and other optimizations",
"version": "0.5.1",
"main": "index.js",
"license": "MIT",
"type": "module",
"packageManager": "pnpm@10.5.2",
"scripts": {
"run": "node src/index.ts",
"runfresh": "rm -f storage/QueueHandler.sqlite && node src/index.ts",
"tilegen": "ts-node src/cli/generateTiles.ts assets/drawing.png 100 1",
"server": "ts-node src/index.ts",
"new_server": "scripts/reset.sh && ts-node src/index.ts",
"queuehandler": "ts-node src/QueueHandler/index.ts",
"selector": "tsx utils/selector.ts"
},
"dependencies": {
"abi-wan-kanabi": "^2.2.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^5.0.1",
"fs-extra": "^11.2.0",
"lodash": "^4.17.21",
"pngjs": "^7.0.0",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"starknet": "^6.23.1",
"ws": "8.17.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.7.0",
"@types/pngjs": "^6.0.5",
"@types/ws": "^8.5.10",
"typescript": "^5.8.2",
"vitest": "^3.0.7",
"wait-port": "^1.0.4"
},
"pnpm": {
"onlyBuiltDependencies": ["@biomejs/biome", "esbuild", "sqlite", "sqlite3"]
}
}