-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 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
42
43
{
"name": "ckb-elevator-backend",
"version": "0.1.0",
"description": "",
"main": "index.js",
"tsup": {
"entry": ["src/index.ts"],
"format": ["cjs", "esm"],
"dts": true,
"sourcemap": true,
"clean": true
},
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsup && cp src/db/table.sql dist/table.sql",
"start": "node dist/index.cjs",
"lint": "biome check src --write",
"fmt": "biome format . --write"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/node": "^22.10.2",
"@types/ws": "^8.5.13",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"dependencies": {
"@ckb-ccc/core": "^1.2.1",
"@types/better-sqlite3": "^7.6.12",
"better-sqlite3": "^11.7.2",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"winston": "^3.17.0",
"ws": "^8.18.0"
}
}