-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.28 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.28 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
{
"name": "x402-lighthouse",
"version": "1.0.0",
"description": "x402 pay-per-use file upload to Lighthouse IPFS",
"type": "module",
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc",
"start": "node ./dist/index.js",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "husky"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.991.0",
"@aws-sdk/lib-dynamodb": "^3.991.0",
"@coinbase/cdp-sdk": "^1.44.1",
"@lighthouse-web3/sdk": "^0.4.3",
"@x402/core": "^2.3.1",
"@x402/evm": "^2.3.1",
"@x402/express": "^2.3.0",
"cors": "^2.8.5",
"dotenv": "^16.6.1",
"express": "^4.19.2",
"file-type": "^21.3.0",
"uuid": "^13.0.0",
"winston": "^3.19.0",
"winston-transport": "^4.9.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.12.5",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"tsx": "^4.20.6",
"typescript": "^5.4.4",
"typescript-eslint": "^8.56.0"
}
}