-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.88 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.88 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
{
"name": "validation-tool-interface",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "NEXT_TELEMETRY_DISABLED=1 next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "eslint --cache --cache-location .next/cache/eslint/",
"lint:fix": "eslint --fix",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest --runInBand",
"test:watch": "NODE_OPTIONS='--experimental-vm-modules' jest --watch --runInBand",
"test:coverage": "NODE_OPTIONS='--experimental-vm-modules' jest --coverage --runInBand",
"validate-structure": "tsx scripts/validate-structure.ts",
"validate-folder": "tsx scripts/validate-structure.ts",
"check-overrides": "tsx scripts/check-overrides.ts",
"format:check": "prettier --check .",
"fmt": "prettier --write ."
},
"dependencies": {
"@sigstore/bundle": "4.0.0",
"@sigstore/verify": "3.1.0",
"lucide-react": "0.554.0",
"next": "16.2.3",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-markdown": "10.1.0",
"remark-gfm": "4.0.1",
"shell-quote": "1.8.3",
"tar": "7.5.13",
"viem": "2.38.2",
"yaml": "2.8.3",
"zod": "3.22.4"
},
"devDependencies": {
"@eslint/eslintrc": "3",
"@next/eslint-plugin-next": "16.2.3",
"@tailwindcss/postcss": "4",
"@types/jest": "29.5.12",
"@types/node": "22.0.0",
"@types/react": "19.2.0",
"@types/react-dom": "19",
"@types/semver": "7.7.1",
"@types/shell-quote": "1.7.5",
"eslint": "9",
"eslint-config-next": "16.2.3",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"jest": "30.2.0",
"prettier": "^3.8.1",
"semver": "7.7.3",
"ts-jest": "29.4.5",
"tsx": "4.20.6",
"typescript": "5.9.3"
},
"overrides": {
"babel-plugin-istanbul": "7.0.1",
"test-exclude": "7.0.1",
"glob": "10.5.0",
"brace-expansion": "1.1.14"
}
}