-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.44 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.44 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
{
"name": "proof-generation-api",
"version": "1.0.4",
"module": "index.ts",
"type": "module",
"private": true,
"scripts": {
"typecheck": "tsc --noEmit --skipLibCheck",
"lint": "concurrently --group --prefix-colors auto 'pnpm:lint:md' 'pnpm:lint:ts' 'pnpm:typecheck' 'prettier --check .'",
"lint:md": "markdownlint-cli2 \"**/*.md\"",
"lint:ts": "eslint .",
"format": "pnpm run format:md && pnpm run format:ts && prettier --write .",
"format:md": "markdownlint-cli2 --fix \"**/*.md\"",
"format:ts": "eslint . --fix",
"build": "tsc -p tsconfig.build.json",
"test": "vitest run",
"start": "node src/bin/apiServer.ts",
"dev": "dotenvx run -- nodemon -x \"node\" src/bin/apiServer.ts",
"prepare": "husky",
"get-receipts-root": "dotenvx run -- node src/scripts/get-receipts-root.ts",
"memory-report": "dotenvx run -- node --expose-gc --inspect src/scripts/memory-report.ts",
"memory-compare": "node ../apps-team-ops/src/bin/memory-compare.ts",
"ci:publish": "pnpm exec changeset publish"
},
"engines": {
"node": ">=24.12.0"
},
"packageManager": "pnpm@10.30.3",
"main": "src/bin/apiServer.ts",
"devDependencies": {
"@changesets/cli": "^2.27.0",
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@dotenvx/dotenvx": "^1.51.4",
"@polygonlabs/apps-team-lint": "^2.0.0",
"@tsconfig/node-ts": "^23.6.4",
"@tsconfig/node24": "^24.0.4",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/express-serve-static-core": "^5.1.1",
"@types/node": "^24.0.0",
"@types/supertest": "^6.0.3",
"@types/yargs": "^17.0.35",
"concurrently": "^9.2.1",
"eslint": "^10.0.0",
"eslint-import-resolver-typescript": "^4.4.4",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"markdownlint-cli2": "^0.21.0",
"nodemon": "^3.1.11",
"pino-pretty": ">=13.0.0",
"prettier": "^3.8.0",
"supertest": "^7.2.2",
"typescript": "^5.9.3",
"vitest": "^3.2.1",
"yargs": "^18.0.0"
},
"dependencies": {
"@asteasolutions/zod-to-openapi": "^8.4.1",
"@maticnetwork/maticjs": "3.9.7",
"@maticnetwork/maticjs-ethers": "^1.1.0",
"@polygonlabs/logger": "^1.0.1",
"@polygonlabs/verror": "^1.0.0",
"@scalar/express-api-reference": "^0.8.45",
"@sentry/node": "^10.39.0",
"@t3-oss/env-core": "^0.13.10",
"cors": "^2.8.5",
"ethers": "^5.8.0",
"express": "^5.2.1",
"zod": "^4.3.6"
}
}