-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.34 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
59
60
61
{
"name": "pendulum-subsquid-indexers",
"private": true,
"engines": {
"node": ">=16"
},
"packageManager": "[email protected]+sha512.837566d24eec14ec0f5f1411adb544e892b3454255e61fdef8fd05f3429480102806bac7446bc9daff3896b01ae4b62d00096c7e989f1596f2af10b927532f39",
"scripts": {
"build": "rm -rf lib && tsc",
"update": "npx npm-check-updates --filter /subsquid/ --upgrade && yarn install",
"db:migrate": "npx squid-typeorm-migration apply",
"processor:start": "node lib/processor.js",
"query-node:start": "squid-graphql-server --subscriptions --max-response-size 10000 --dumb-cache in-memory --dumb-cache-ttl 1000 --dumb-cache-size 100 --dumb-cache-max-age 1000",
"prepare": "husky install",
"lint": "eslint . ",
"lint:fix": "eslint . --fix",
"generate-types-from-runtime-binary": "node local-archive-endpoint/server.js"
},
"dependencies": {
"@polkadot/util": "11.1.1",
"@subsquid/big-decimal": "^1.0.0",
"@subsquid/evm-typegen": "^4.3.0",
"@subsquid/graphql-server": "4.7.0",
"@subsquid/ink-abi": "^3.1.2",
"@subsquid/ss58": "2.0.2",
"@subsquid/substrate-processor": "^8.5.1",
"@subsquid/substrate-runtime": "^2.0.0",
"@subsquid/typeorm-migration": "1.3.0",
"@subsquid/typeorm-store": "^1.5.1",
"axios": "^1.7.3",
"big.js": "^6.2.1",
"dotenv": "^16.0.0",
"express": "^4.19.2",
"lodash": "^4.17.21",
"pg": "8.9.0",
"stellar-base": "^9.0.0",
"typeorm": "^0.3.17"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@subsquid/ink-typegen": "^3.1.0",
"@subsquid/substrate-metadata-explorer": "3.2.0",
"@subsquid/substrate-typegen": "^8.1.0",
"@subsquid/typeorm-codegen": "2.0.2",
"@types/big.js": "^6.1.6",
"@types/eslint__js": "^8.42.3",
"@types/lodash": "^4.14.192",
"@types/node": "18.11.18",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"eslint": "^9.11.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"prettier": "2.8.8",
"typescript": "^5.6.2",
"typescript-eslint": "^8.8.0"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}