-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.54 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.54 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
47
48
49
50
51
52
{
"name": "@x402/advanced-facilitator-example",
"version": "2.0.0",
"type": "module",
"private": true,
"scripts": {
"start": "tsx all_networks.ts",
"start:payment-worker": "tsx payment_worker.ts",
"start:data-worker": "tsx data_worker.ts",
"start-prod": "node dist/all_networks.js",
"dev": "tsx all_networks.ts",
"dev:all-networks": "tsx all_networks.ts",
"dev:payment-worker": "tsx payment_worker.ts",
"dev:data-worker": "tsx data_worker.ts",
"dev:exercise-settle-data": "tsx exercise_settle_data.ts",
"dev:bazaar": "tsx bazaar.ts",
"build": "tsc",
"lint": "eslint .",
"format": "prettier --write .",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@openzeppelin/merkle-tree": "^1.0.8",
"@scure/base": "^1.2.6",
"@solana/kit": "^2.1.1",
"@x402/core": "workspace:*",
"@x402/evm": "workspace:*",
"@x402/extensions": "workspace:*",
"@x402/svm": "workspace:*",
"bullmq": "^5.23.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"hot-shots": "^10.2.1",
"ioredis": "^5.4.1",
"redis": "^4.7.0",
"viem": "^2.21.54"
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"@types/express": "^4.17.21",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.29.1",
"@typescript-eslint/parser": "^8.29.1",
"eslint": "^9.15.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.6.9",
"eslint-plugin-prettier": "^5.2.6",
"prettier": "^3.3.3",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}