-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
91 lines (91 loc) · 3.21 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@powerhousedao/switchboard-api",
"version": "0.0.1",
"description": "Open-source API over database models made to be developer- and analyst-friendly.",
"author": "makerdao",
"type": "module",
"license": "AGPL-3",
"scripts": {
"start": "NODE_ENV=production node dist/index.js",
"dev": "vite-node -w src/index.ts",
"debug": "DEBUG=1 npm run dev",
"lint": "eslint \"./**/*.{ts,tsx}\" --max-warnings=0",
"typecheck": "tsc --noEmit",
"format": "prettier . --write",
"test": "vitest run && vitest run --config ./vitest.modules.config.ts",
"watch": "vitest watch",
"build": "node --no-warnings=ExperimentalWarning ./esbuild.config.js",
"inspect": "NODE_ENV=production node --max-old-space-size=512 --inspect dist/index.js",
"test:load": "autocannon http://localhost:3000/d/test-load -m POST --header 'Content-Type: application/json' -i tests/autocannon/registerListener.json --renderStatusCodes",
"release": "semantic-release"
},
"dependencies": {
"@apollo/server": "^4.10.3",
"@octokit/rest": "^20.1.1",
"@prisma/client": "5.11.0",
"@sentry/node": "^7.110.1",
"@sentry/profiling-node": "^7.110.1",
"@types/cookie-parser": "^1.4.7",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"document-drive": "1.0.0-alpha.94",
"document-model": "^1.8.0",
"document-model-libs": "^1.84.0",
"dotenv": "^16.4.5",
"esbuild": "^0.21.2",
"ethers": "^5.7.2",
"express": "^4.19.2",
"express-async-errors": "^3.1.1",
"express-prom-bundle": "^7.0.0",
"graphql": "^16.8.1",
"graphql-middleware": "^6.1.35",
"graphql-playground-middleware-express": "^1.7.23",
"graphql-request": "^7.0.1",
"json-stringify-deterministic": "^1.0.12",
"jsonwebtoken": "^9.0.2",
"ms": "^2.1.3",
"nexus": "^1.3.0",
"nexus-validation-plugin": "^0.2.0",
"pino": "^8.20.0",
"pino-http": "^8.6.1",
"pino-loki": "^2.3.0",
"pino-pretty": "^10.3.1",
"pino-sentry-transport": "^1.1.0",
"prisma": "^5.14.0",
"prom-client": "^15.1.3",
"redis": "^4.6.13",
"siwe": "^2.3.2",
"vite-node": "^0.29.8",
"vitest": "^0.32.4",
"wildcard-match": "^5.1.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/bcrypt": "^5.0.2",
"@types/body-parser": "^1.19.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/ms": "^0.7.34",
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitest/coverage-istanbul": "^0.29.8",
"autocannon": "^7.15.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"gql-query-builder": "^3.8.0",
"node-fetch": "^3.3.2",
"prettier": "^3.3.2",
"prettier-plugin-organize-imports": "^4.0.0",
"semantic-release": "^24.0.0",
"typescript": "^5.4.5",
"vitest-mock-extended": "^1.3.1"
},
"packageManager": "[email protected]+sha256.30a1801ac4e723779efed13a21f4c39f9eb6c9fbb4ced101bce06b422593d7c9"
}