forked from ton-ai-core/ton-api-indexing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.54 KB
/
package.json
File metadata and controls
55 lines (55 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
53
54
55
{
"name": "ton-api-indexer",
"version": "1.0.0",
"description": "Incremental TON blockchain contracts indexer using tonapi.io",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"start:infinite": "node dist/index.js infinite",
"start:timed": "node dist/index.js timed 10",
"start:daemon": "chmod +x scripts/run-daemon.sh && ./scripts/run-daemon.sh",
"dev": "ts-node src/index.ts",
"dev:timed": "npx ts-node src/index.ts timed 10",
"test": "echo \"No tests specified\" && exit 0",
"test:rate-limit": "ts-node scripts/test-rate-limit.ts",
"test:filter": "ts-node scripts/test-address-filter.ts",
"setup": "chmod +x scripts/setup.sh && ./scripts/setup.sh",
"lint": "eslint src/**/*.ts",
"clean": "rm -rf dist"
},
"keywords": [
"ton",
"blockchain",
"indexer",
"tonapi",
"contracts"
],
"author": "TON Foundation",
"license": "MIT",
"dependencies": {
"axios": "^1.6.0",
"graphql": "^16.8.1",
"graphql-request": "^6.1.0",
"fs-extra": "^11.1.1",
"pino": "^8.16.0",
"pino-pretty": "^10.2.3",
"p-limit": "^4.0.0",
"dotenv": "^16.3.1"
},
"devDependencies": {
"@types/node": "^20.8.0",
"@types/fs-extra": "^11.0.2",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.50.0",
"jest": "^29.7.0",
"@types/jest": "^29.5.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=18.0.0"
}
}