-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.22 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.22 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
{
"name": "squid",
"private": true,
"engines": {
"node": ">=16"
},
"scripts": {
"build": "rm -rf lib && tsc",
"docker:build": "docker build . -t squid-processor",
"docker:run": "docker run -d --name squid-processor -e DB_PORT=5432 -p 4000:4000 -v my-app-data:/var/lib/postgresql/data squid-processor",
"ctag": "ctags package.json src/* README.md schema.graphql squid.yaml scripts/* commands.json .env run.sh tsconfig.json typegen.json docker-compose.yml ",
"processor:start": "node lib/processor.js",
"query-node:start": "squid-graphql-server",
"db:migrate": "npx sqd db migrate",
"deploy": "npx sqd deploy --org lastic ."
},
"dependencies": {
"@subsquid/graphql-server": "^4.5.1",
"@subsquid/ss58": "^2.0.2",
"@subsquid/substrate-processor": "^8.3.0",
"@subsquid/substrate-runtime": "^2.0.0",
"@subsquid/typeorm-migration": "^1.3.0",
"@subsquid/typeorm-store": "^1.4.0",
"dotenv": "^16.4.5",
"pg": "8.11.5",
"typeorm": "^0.3.20"
},
"devDependencies": {
"@subsquid/substrate-metadata-explorer": "^3.1.2",
"@subsquid/substrate-typegen": "^8.1.0",
"@subsquid/typeorm-codegen": "^1.3.3",
"@types/node": "^20.12.8",
"typescript": "^5.4.5"
}
}