-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.94 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
{
"name": "super-json-editor",
"version": "2.0.0",
"description": "A sophisticated standalone web application for parsing, editing, and reconstructing deeply nested/escaped JSON structures",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"deploy": "npm run build && wrangler pages deploy dist --project-name=super-json",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,md}\"",
"typecheck": "tsc --noEmit",
"test": "playwright test",
"test:ui": "playwright test --ui",
"test:debug": "playwright test --debug",
"test:report": "playwright show-report",
"test:vitest": "vitest",
"test:vitest-ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:skill": "npx skills add . -y && rm -rf .agents .claude/skills skills-lock.json"
},
"dependencies": {
"@monaco-editor/react": "^4.6.0",
"clsx": "^2.1.1",
"immer": "^10.1.1",
"nanoid": "^5.0.9",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.4.1",
"react-resizable-panels": "^2.1.8",
"zustand": "^5.0.3"
},
"devDependencies": {
"@playwright/test": "^1.54.2",
"@testing-library/jest-dom": "^6.7.0",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.6.0",
"@types/react": "^18.3.17",
"@types/react-dom": "^18.3.6",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"@vitejs/plugin-react": "^4.3.5",
"@vitest/ui": "^2.1.8",
"eslint": "^9.18.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.17",
"gh-pages": "^6.3.0",
"happy-dom": "^14.12.0",
"playwright": "^1.54.2",
"prettier": "^3.4.2",
"terser": "^5.43.1",
"typescript": "^5.7.3",
"vite": "^6.0.7",
"vitest": "^2.1.8"
}
}