-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 3.17 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "squid-indexer",
"version": "0.0.0",
"private": true,
"packageManager": "yarn@1.22.19",
"scripts": {
"build": "rm -rf lib && sqd build",
"license-add": "license-check-and-add add -f license-config.json",
"license-check": "license-check-and-add check -f license-config.json",
"license-remove": "license-check-and-add remove -f license-config.json",
"lint": "yarn run lint:style && yarn run lint:types",
"lint:fix": "yarn run lint:style --fix && yarn run lint:types",
"lint:style": "eslint --color --ext .ts src/",
"lint:types": "tsc --noEmit --pretty",
"migration:apply": "squid-typeorm-migration apply",
"migration:generate": "squid-typeorm-migration generate",
"start": "docker-compose up --build",
"stop": "docker-compose down",
"test:unit": "NODE_ENV=test nyc --exclude **/data/** --all --include \"src/**/*.ts\" mocha -r ts-node/register \"tests/unit/**/*.spec.ts\"",
"test:e2e": "NODE_ENV=test SERVER_PORT=0 mocha --timeout 40000 -r ts-node/register -r dotenv/config \"tests/e2e/**/*.spec.ts\"",
"update": "npx npm-check-updates --filter /subsquid/ --upgrade && npm i -f"
},
"dependencies": {
"@fastify/compress": "^6.2.1",
"@fastify/cors": "^8.2.1",
"@fastify/env": "^4.4.0",
"@fastify/helmet": "^11.1.1",
"@fastify/swagger": "^8.14.0",
"@fastify/swagger-ui": "^3.0.0",
"@openzeppelin/contracts": "^4.8.3",
"@polkadot/api": "^12.2.1",
"@subsquid/cli": "^2.12.0",
"@subsquid/evm-abi": "^0.3.0",
"@subsquid/evm-codec": "^0.3.0",
"@subsquid/evm-processor": "^1.17.1",
"@subsquid/evm-typegen": "^4.0.0",
"@subsquid/ss58": "^2.0.2",
"@subsquid/substrate-processor": "^8.5.1",
"@subsquid/substrate-runtime": "^2.0.0",
"@subsquid/substrate-typegen": "^8.1.0",
"@subsquid/typeorm-codegen": "^2.0.2",
"@subsquid/typeorm-migration": "^1.3.0",
"@subsquid/typeorm-store": "^1.5.1",
"@types/node-cleanup": "^2.1.5",
"ethers": "^6.11.1",
"fastify": "^4.17.0",
"fastify-healthcheck": "^4.4.0",
"license-check-and-add": "^4.0.5",
"node-cleanup": "^2.1.2",
"pg": "^8.11.5",
"typeorm": "^0.3.20",
"winston": "^3.3.3",
"winston-transport": "^4.5.0"
},
"devDependencies": {
"@buildwithsygma/core": "^1.4.0",
"@chainsafe/eslint-config": "^2.2.4",
"@polkadot/types": "^12.2.1",
"@subsquid/evm-typegen": "^4.0.0",
"@subsquid/substrate-metadata-explorer": "^3.1.2",
"@types/chai": "^4.3.16",
"@types/mocha": "^10.0.7",
"@types/node": "^20.14.12",
"@types/sinon": "^17.0.3",
"chai": "^4.3.7",
"eslint": "^8.21.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"sinon": "^15.2.0",
"ts-node": "^10.2.1",
"typeorm-naming-strategies": "^4.1.0",
"typescript": "^5.4.4"
},
"resolutions": {
"@polkadot/api": "^12.2.1",
"@polkadot/types": "^12.2.1",
"@polkadot/keyring": "^13.0.2",
"@polkadot/networks": "^13.0.2",
"@polkadot/rpc-provider": "^12.2.1",
"@polkadot/util": "^13.0.2",
"@polkadot/util-crypto": "^13.0.2",
"@polkadot/wasm-crypto": "^7.3.2",
"@polkadot/x-randomvalues": "^13.0.2",
"@polkadot/x-bigint": "^13.0.2",
"typescript": "^5.4.4"
}
}