-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.62 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.62 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
{
"name": "@aethelred/terraqura",
"version": "1.0.0",
"private": true,
"description": "Institutional-Grade Carbon Asset Platform with Proof-of-Physics Verification — Aethelred dApp #5",
"repository": {
"type": "git",
"url": "https://github.com/aethelred-io/terraqura.git"
},
"license": "Apache-2.0",
"author": "Aethelred <dev@aethelred.io>",
"workspaces": [
"apps/*",
"packages/*",
"packages/config/*"
],
"scripts": {
"build": "turbo build --filter=!@terraqura/subgraph",
"build:subgraph": "pnpm --filter @terraqura/subgraph build",
"dev": "turbo dev",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\"",
"test": "turbo test",
"test:coverage": "turbo test:coverage",
"test:python": "cd apps/analytics && python -m pytest tests/ -v",
"test:rust": "cd apps/verifier && cargo test",
"test:go": "cd apps/indexer && go test ./...",
"test:all": "turbo test && pnpm test:python && pnpm test:rust && pnpm test:go",
"clean": "turbo clean && rm -rf node_modules",
"typecheck": "turbo typecheck",
"prepare": "husky"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@vitest/coverage-v8": "^3.2.4",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"turbo": "^2.0.0"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"pnpm": {
"patchedDependencies": {
"@graphprotocol/graph-cli@0.67.4": "patches/@graphprotocol__graph-cli@0.67.4.patch"
},
"overrides": {
"@openzeppelin/contracts": "4.9.6",
"@openzeppelin/contracts-upgradeable": "4.9.6",
"axios": "1.13.6",
"brace-expansion": "5.0.2",
"cross-spawn": "7.0.6",
"defu": "6.1.7",
"fast-jwt": "6.2.0",
"fast-xml-parser": ">=5.3.6",
"undici": "^6.21.1",
"flatted": ">=3.3.4",
"glob": "10.5.0",
"handlebars": "4.7.9",
"h3": "1.15.9",
"lodash": "4.18.1",
"minimatch": "10.2.3",
"path-to-regexp": "0.1.13",
"parse-duration": "2.1.6",
"picomatch": "4.0.4",
"semver": "7.5.2",
"tar": ">=6.3.1",
"immutable": ">=5.1.2",
"svgo": ">=3.4.0",
"@hono/node-server": ">=1.14.1",
"hono": ">=4.7.6",
"serialize-javascript": "7.0.5",
"vite": "6.4.2",
"yaml": "2.8.3"
}
}
}