forked from vercel-labs/json-render
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.86 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
{
"name": "json-render",
"private": true,
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/vercel-labs/json-render.git"
},
"homepage": "https://github.com/vercel-labs/json-render#readme",
"bugs": {
"url": "https://github.com/vercel-labs/json-render/issues"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --concurrency 15",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx}\"",
"type-check": "turbo run check-types",
"check-types": "turbo run check-types",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepare": "husky"
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.1",
"husky": "^9.1.7",
"jsdom": "^27.4.0",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"turbo": "^2.9.14",
"typescript": "5.9.2",
"vite": "^7.3.5",
"vitest": "^4.1.0"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=18"
},
"lint-staged": {
"*.{ts,tsx}": "prettier --write"
},
"pnpm": {
"overrides": {
"postcss": "^8.5.10",
"minimatch@<3.1.3": ">=3.1.3",
"rollup@>=4.0.0 <4.59.0": ">=4.59.0",
"minimatch@>=9.0.0 <9.0.7": "^9.0.7",
"eslint-plugin-react>minimatch": "^9.0.7",
"minimatch@<3.1.4": ">=3.1.4",
"ajv@<6.14.0": ">=6.14.0",
"flatted@<3.4.0": ">=3.4.0",
"flatted@<=3.4.1": ">=3.4.2",
"brace-expansion@<1.1.13": ">=1.1.13",
"brace-expansion@>=2.0.0 <2.0.3": ">=2.0.3",
"picomatch@>=4.0.0 <4.0.4": ">=4.0.4",
"yaml@>=2.0.0 <2.8.3": ">=2.8.3",
"vite": "^7.3.5",
"ws@>=8.0.0 <8.20.1": ">=8.20.1",
"esbuild@>=0.27.3 <0.28.1": ">=0.28.1",
"ws@>=8.0.0 <8.21.0": ">=8.21.0",
"js-yaml@<=4.1.1": ">=4.2.0"
}
}
}