-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.54 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "api-capsule-nice",
"type": "module",
"version": "1.0.0",
"description": "",
"main": "dist/server.js",
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "rimraf dist && tsc",
"start": "node dist/server.js",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"postinstall": "npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/module-alias": "^2.0.4",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@alchemy/aa-alchemy": "3.19.0",
"@supabase/supabase-js": "^2.48.1",
"@usecapsule/server-sdk": "1.23.0-dev.1",
"@usecapsule/viem-v2-integration": "1.22.0-dev.1",
"@wagmi/core": "2.16.3",
"@zerodev/ecdsa-validator": "^5.4.3",
"compression": "^1.7.5",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.5.0",
"helmet": "^8.0.0",
"module-alias": "^2.2.3",
"node-cache": "^5.1.2",
"pino": "^9.6.0",
"pino-http": "^10.4.0",
"pino-pretty": "^13.0.0",
"viem": "2.22.14",
"zod": "^3.24.1"
},
"engines": {
"node": "=18.0.0"
}
}