-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.08 KB
/
package.json
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
{
"name": "eslint-code-explorer",
"version": "0.1.0",
"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",
"build:readme": "node tools/update-readme.js",
"start": "vite",
"lint": "npm-run-all --parallel lint:js",
"lint:fix": "npm-run-all --parallel lint:fix:*",
"lint:js": "eslint .",
"lint:fix:js": "eslint . --fix",
"fmt": "prettier --check .",
"fmt:fix": "prettier --write ."
},
"lint-staged": {
"**/*.{ts,tsx,jsx,js}": [
"eslint --fix",
"prettier --write"
],
"!(*.(js|jsx|ts|tsx))": "prettier --write --ignore-unknown"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"engines": {
"node": ">= 20"
},
"dependencies": {
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lang-markdown": "^6.2.5",
"@codemirror/language": "^6.10.3",
"@eslint/js": "^9.9.0",
"@eslint/json": "^0.4.1",
"@eslint/markdown": "^6.1.1",
"@lezer/highlight": "^1.2.1",
"@radix-ui/react-accordion": "^1.2.0",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-toast": "^1.2.1",
"@radix-ui/react-toggle": "^1.1.0",
"@radix-ui/react-toggle-group": "^1.1.0",
"@uiw/react-codemirror": "^4.23.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"codemirror": "^6.0.1",
"eslint-linter-browserify": "^9.7.0",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-scope": "^8.1.0",
"espree": "^10.1.0",
"global": "^4.4.0",
"graphviz-react": "^1.2.5",
"lucide-react": "^0.407.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwind-merge": "^2.4.0",
"tailwindcss-animate": "^1.0.7",
"use-debounced-effect": "^2.0.1",
"zustand": "^4.5.4"
},
"devDependencies": {
"@types/eslint-scope": "^3.7.7",
"@types/espree": "^10.0.0",
"@types/node": "^18.19.44",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^8.57.0",
"got": "^14.4.3",
"lint-staged": "^15.2.9",
"npm-run-all": "^4.1.5",
"postcss": "^8",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.4",
"typescript": "^5.5.3",
"typescript-eslint": "^8.3.0",
"vite": "^5.3.5",
"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"
]
}
}