-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.26 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.26 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "eslint-code-explorer",
"private": true,
"description": "A tool that visualizes JS and TS code structure and scope using ESLint's scope analysis.",
"repository": "eslint/code-explorer",
"funding": "https://opencollective.com/eslint",
"bugs": "https://github.com/eslint/code-explorer/issues",
"type": "module",
"scripts": {
"build": "vite build",
"build:preview": "vite preview",
"start": "vite",
"build:types": "tsc",
"lint": "eslint",
"lint:fix": "eslint --fix",
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"test:e2e": "playwright test"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"!(*.(js|jsx|ts|tsx))": "prettier --write --ignore-unknown"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"engines": {
"node": ">= 20"
},
"dependencies": {
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/language": "^6.12.3",
"@codemirror/view": "^6.41.0",
"@eslint/css": "^1.1.0",
"@eslint/js": "^9.39.4",
"@eslint/json": "^1.2.0",
"@eslint/markdown": "^8.0.1",
"@html-eslint/eslint-plugin": "^0.59.0",
"@lezer/highlight": "^1.2.3",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-toggle": "^1.1.10",
"@radix-ui/react-toggle-group": "^1.1.11",
"@uiw/react-codemirror": "^4.25.9",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"codemirror": "^6.0.2",
"eslint-linter-browserify": "^10.2.0",
"eslint-scope": "^9.1.2",
"espree": "^11.2.0",
"esquery": "^1.7.0",
"graphviz-react": "^1.2.5",
"lucide-react": "^1.8.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-resizable-panels": "^4.10.0",
"tailwind-merge": "^2.6.1",
"tailwindcss-animate": "^1.0.7",
"zustand": "^5.0.12"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@eslint/core": "^1.2.1",
"@playwright/test": "^1.59.1",
"@rolldown/plugin-babel": "^0.2.2",
"@types/esquery": "^1.5.4",
"@types/node": "^20.19.37",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "^9.39.4",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-playwright": "^2.10.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"lint-staged": "^15.5.2",
"postcss": "^8.5.8",
"prettier": "3.8.1",
"tailwindcss": "^3.4.19",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.0",
"vite": "^8.0.3",
"yorkie": "^2.0.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}