-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.46 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.46 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
{
"name": "mantela-editor",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "bunx --bun vite --host",
"build": "tsc -b && vite build",
"lint": "bun run conc \"bun:lint:*\"",
"lint:xo": "xo .",
"lint:tsc": "tsc -p tsconfig.app.json -p tsconfig.node.json --noEmit",
"format": "xo . --fix",
"preview": "vite preview",
"sb": "storybook dev -p 6006 --no-open",
"test": "vitest",
"test:coverage": "bun run test --coverage"
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^15.2.2",
"@codemirror/autocomplete": "^6.20.0",
"@codemirror/commands": "^6.10.0",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/language": "^6.11.3",
"@codemirror/lint": "^6.9.2",
"@codemirror/view": "^6.39.11",
"@fortawesome/free-brands-svg-icons": "^7.0.1",
"@uiw/codemirror-extensions-langs": "^4.25.3",
"@uiw/react-codemirror": "^4.25.3",
"codemirror-json-schema": "^0.8.1",
"immer": "^11.1.3",
"jotai": "^2.16.2",
"jotai-immer": "^0.4.1",
"json-schema-library": "^10.5.1",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-select": "^5.10.2",
"use-immer": "^0.11.0",
"vite-plugin-node-polyfills": "^0.25.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@storybook/addon-a11y": "^10.2.4",
"@storybook/addon-vitest": "^10.2.4",
"@storybook/react": "^10.2.4",
"@storybook/react-vite": "^10.2.4",
"@swc-jotai/react-refresh": "^0.5.0",
"@tailwindcss/vite": "^4.1.18",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react": "^5.1.3",
"@vitejs/plugin-react-swc": "^4.2.3",
"@vitest/browser": "^4.0.18",
"@vitest/browser-playwright": "^4.0.18",
"@vitest/coverage-v8": "^4.0.18",
"autoprefixer": "^10.4.24",
"concurrently": "^9.2.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-perfectionist": "^5.4.0",
"eslint-plugin-react-refresh": "^0.5.0",
"eslint-plugin-tailwindcss": "^4.0.0-beta.0",
"eslint-plugin-unused-imports": "^4.3.0",
"globals": "^17.3.0",
"jotai-devtools": "^0.13.0",
"playwright": "^1.58.1",
"rollup-plugin-visualizer": "^6.0.5",
"storybook": "^10.2.4",
"tailwindcss": "^4.1.18",
"typescript": "~5.9.2",
"uuid": "^13.0.0",
"vite": "^7.3.1",
"vitest": "^4.0.18",
"xo": "^1.2.3"
},
"prettier": {
"bracketSpacing": true
},
"trustedDependencies": [
"@swc/core",
"unrs-resolver"
]
}