forked from DistributedCollective/sovryn-indexer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.4 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
{
"name": "sovryn-indexer",
"version": "0.0.1",
"main": "src/index.ts",
"author": "Rytis Grincevicius <rytis.grincevicius@gmail.com>",
"license": "MIT",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"typechain": "typechain --target ethers-v6 --out-dir src/artifacts/abis/types './src/artifacts/abis/**/*.json' --always-generate-overloads --discriminate-types",
"dev": "debug=* NODE_PATH=./src ts-node-dev --rs --exit-child ./src/index.ts",
"predev": "pnpm run typechain",
"build": "rimraf build && tsc",
"prebuild": "pnpm run typechain",
"start": "NODE_ENV=production NODE_PATH=./build node ./build/index.js",
"docker:dev": "./scripts/dev.sh",
"docker:bash": "docker-compose exec sovryn-indexer bash",
"lint": "eslint --ext .ts src --fix",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"studio": "drizzle-kit studio",
"migrate:generate": "drizzle-kit generate",
"migrate": "tsx src/database/migrate.ts",
"db:push": "drizzle-kit push",
"db:seed": "tsx src/database/seed.ts",
"db:reset": "tsx src/database/reset.ts"
},
"dependencies": {
"@typechain/ethers-v6": "^0.5.1",
"body-parser": "^1.20.1",
"convict": "^6.2.4",
"convict-format-with-validator": "^6.2.0",
"cors": "^2.8.5",
"cron": "^3.1.7",
"dotenv": "^16.0.3",
"drizzle-orm": "^0.30.10",
"ethers": "^6.12.1",
"express": "^4.18.2",
"graphql": "^16.8.1",
"graphql-tag": "^2.12.6",
"helmet": "^6.0.0",
"joi": "^17.7.0",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"node-fetch": "^3.3.2",
"pino": "^9.1.0",
"pino-http": "^10.1.0",
"postgres": "^3.4.3",
"redis": "^4.6.14",
"rimraf": "^5.0.7",
"typechain": "^8.3.2",
"typescript": "^4.9.3"
},
"devDependencies": {
"@types/convict": "^6.1.6",
"@types/express": "^4.17.14",
"@types/lodash": "^4.14.191",
"@types/node": "^18.11.9",
"@types/pg": "^8.11.0",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"drizzle-kit": "^0.21.4",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"pg": "^8.11.3",
"pino-pretty": "^11.1.0",
"prettier": "^2.8.1",
"ts-node-dev": "^2.0.0",
"tsx": "^4.11.2"
},
"engines": {
"node": ">=20.10.0"
}
}