-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.75 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.75 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
{
"name": "solixdb-api",
"version": "1.0.0",
"description": "Scaled API/GraphQL Service for Solana Transaction Data",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "NODE_OPTIONS=\"--max-old-space-size=16384\" node dist/index.js",
"dev": "NODE_OPTIONS=\"--max-old-space-size=16384\" tsx watch src/index.ts",
"lint": "eslint src --ext .ts",
"test": "jest",
"test:comprehensive": "tsx test/comprehensive.test.ts",
"prepare": "husky"
},
"keywords": [
"solana",
"api",
"graphql",
"clickhouse"
],
"author": "",
"license": "MIT",
"dependencies": {
"@apollo/server": "^4.10.0",
"@clickhouse/client": "^0.2.7",
"@graphql-tools/utils": "^10.0.0",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"bullmq": "^5.0.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"graphql": "^16.8.1",
"graphql-depth-limit": "^1.1.0",
"graphql-tag": "^2.12.6",
"helmet": "^7.1.0",
"ioredis": "^5.3.2",
"jsonwebtoken": "^9.0.2",
"node-cron": "^3.0.3",
"pino": "^8.17.0",
"prom-client": "^15.1.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"uuid": "^9.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.10.6",
"@types/node-cron": "^3.0.11",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^8.56.0",
"husky": "^9.1.7",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}