-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.99 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.99 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
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "oya-fullnode",
"version": "1.0.0",
"type": "module",
"main": "src/server.ts",
"bin": {
"oya": "./bin/oya_cli"
},
"scripts": {
"setup": "bun run scripts/setup.js",
"start": "bun run src/server.ts",
"test:unit": "bun test test/*.test.ts",
"test:integration": "bun test test/integration/*.test.ts",
"test:all": "bun test",
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"format.check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
"types.check": "tsc --noEmit",
"ci:local": "bun run scripts/local-ci.js",
"db:create": "bun run scripts/create-db.js",
"db:setup": "bun run scripts/setup-db.js",
"db:reset": "FORCE_DROP=true bun run scripts/setup-db.js --drop-existing",
"db:test:create": "bun run scripts/create-test-db.js",
"db:test:setup": "bun run scripts/setup-test-db.js",
"db:test:reset": "FORCE_DROP=true bun run scripts/setup-test-db.js --drop-existing",
"filecoin:setup": "bun run scripts/setup-filecoin.js",
"prepare": "command -v husky >/dev/null 2>&1 && husky || true"
},
"dependencies": {
"@acpr/rate-limit-postgresql": "^1.4.1",
"@helia/strings": "^4.1.0",
"alchemy-sdk": "^3.6.5",
"axios": "^1.12.2",
"body-parser": "^2.2.0",
"dotenv": "^17.2.3",
"ethers": "^6.15.0",
"express": "^5.1.0",
"express-rate-limit": "^8.1.0",
"filecoin-pin": "^0.9.2",
"helia": "^5.5.1",
"pg": "^8.16.3",
"pino": "^10.1.0",
"tslog": "^4.10.2"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@types/body-parser": "^1.19.6",
"@types/express": "^5.0.3",
"@types/pg": "^8.15.5",
"@typescript-eslint/eslint-plugin": "^8.45.0",
"@typescript-eslint/parser": "^8.45.0",
"chalk": "^5.6.2",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-tsdoc": "^0.4.0",
"globals": "^16.4.0",
"husky": "^9.1.7",
"jiti": "^2.6.1",
"prettier": "^3.6.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.45.0"
}
}