-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 862 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 862 Bytes
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
{
"name": "@percolator/api",
"version": "0.1.0",
"private": true,
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@hono/node-server": "^1.19.11",
"@percolatorct/sdk": "1.0.0-beta.25",
"@percolator/shared": "github:dcccrypto/percolator-shared#3dfbb7eeb689c8800c6324b89f4104f98b95b699",
"@sentry/node": "^10.39.0",
"@solana/web3.js": "^1.98.0",
"@supabase/supabase-js": "^2.49.1",
"dotenv": "^16.4.7",
"hono": "^4.12.7",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/node": "^25.2.2",
"@types/ws": "^8.5.14",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^4.0.18"
}
}