generated from hashenoki/node-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.19 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.19 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
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
88
89
90
91
92
93
94
95
{
"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",
"graphql": "mkdir -p ./build/artifacts && cp -R ./src/artifacts/graphQueries/ ./build/artifacts/graphQueries/",
"typechain": "typechain --target ethers-v6 --out-dir src/artifacts/abis/types './src/artifacts/abis/**/*.json' --discriminate-types",
"dev": "pnpm concurrently -k \"tsc --project tsconfig.json -w\" \"tsc-alias -w\" \"node --watch ./build/index.js\"",
"workers": "node --watch ./build/workers.js",
"predev": "pnpm run typechain && pnpm run graphql",
"build": "rimraf build && tsc --project tsconfig.json && tsc-alias",
"prebuild": "pnpm run typechain && node scripts/generate-build-info.js",
"postbuild": "pnpm run graphql",
"start": "NODE_ENV=production 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",
"cmd": "DB_LOG_LEVEL=warn tsx src/loader/cmd/index.ts",
"test": "jest"
},
"dependencies": {
"@bull-board/api": "^6.12.7",
"@bull-board/express": "^6.12.7",
"@sovryn/sdex": "^0.3.14",
"@typechain/ethers-v6": "^0.5.1",
"body-parser": "^1.20.1",
"bullmq": "^5.58.2",
"convict": "^6.2.4",
"convict-format-with-validator": "^6.2.0",
"cors": "^2.8.5",
"cron": "^3.1.7",
"dayjs": "^1.11.11",
"dotenv": "^16.0.3",
"drizzle-orm": "^0.30.10",
"ethers": "^6.12.1",
"express": "^5.1.0",
"graphql": "^16.8.1",
"graphql-tag": "^2.12.6",
"helmet": "^6.0.0",
"ioredis": "^5.4.1",
"joi": "^17.7.0",
"lodash": "^4.17.21",
"mathjs": "^13.0.0",
"morgan": "^1.10.0",
"node-fetch": "^3.3.2",
"pino": "^9.1.0",
"pino-http": "^10.1.0",
"postgres": "^3.4.3",
"rate-limiter-flexible": "^5.0.3",
"rimraf": "^5.0.7",
"typechain": "^8.3.2",
"typescript": "^5.5.3"
},
"devDependencies": {
"@types/convict": "^6.1.6",
"@types/express": "^5.0.3",
"@types/jest": "^29.5.12",
"@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",
"concurrently": "^9.2.1",
"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",
"jest": "^29.7.0",
"pg": "^8.11.3",
"pino-pretty": "^11.1.0",
"prettier": "^2.8.1",
"supertest": "^7.0.0",
"ts-jest": "^29.1.5",
"ts-node-dev": "^2.0.0",
"tsc-alias": "^1.8.16",
"tsc-watch": "^7.1.1",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.15.4"
},
"engines": {
"node": ">=22.7.0"
}
}