-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1 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
{
"name": "squid",
"private": true,
"engines": {
"node": ">=16"
},
"scripts": {
"build": "rm -rf lib && tsc",
"migration:generate": "squid-typeorm-migration generate",
"migration:apply": "squid-typeorm-migration apply",
"serve": "squid-graphql-server serve",
"start": "node lib/main.js"
},
"dependencies": {
"@gear-js/api": "^0.35.1",
"@polkadot/api": "^10.10.1",
"@subsquid/archive-registry": "^3.3.0",
"@subsquid/graphql-server": "^4.5.0",
"@subsquid/ss58": "^2.0.2",
"@subsquid/substrate-processor": "^8.1.1",
"@subsquid/typeorm-migration": "^1.3.0",
"@subsquid/typeorm-store": "^1.2.6",
"dotenv": "^16.0.0",
"pg": "8.9.0",
"typeorm": "^0.3.17",
"winston": "^3.11.0"
},
"devDependencies": {
"@polkadot/types": "^10.10.1",
"@subsquid/substrate-metadata-explorer": "^3.1.2",
"@subsquid/substrate-typegen": "^8.0.2",
"@subsquid/typeorm-codegen": "^1.3.3",
"@types/node": "^18.11.18",
"typescript": "^4.9.5"
}
}