-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.42 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.42 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
{
"name": "mermaid-editor",
"version": "0.1.0",
"private": true,
"description": "React-based Mermaid flowchart editor with visual node editing",
"license": "MIT",
"author": "illionillion",
"repository": {
"type": "git",
"url": "https://github.com/illionillion/mermaid-editor.git"
},
"bugs": {
"url": "https://github.com/illionillion/mermaid-editor/issues"
},
"homepage": "https://illionillion.github.io/mermaid-editor/",
"scripts": {
"test:e2e": "playwright test",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type-check": "tsc --noEmit",
"check": "pnpm type-check && pnpm lint && pnpm format:check",
"fix": "pnpm type-check && pnpm lint:fix && pnpm format",
"prepare": "lefthook install",
"commitlint": "commitlint --edit",
"test": "vitest",
"test:ui": "vitest --ui",
"test:vrt": "test-storybook --url http://localhost:6006",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest --watch",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build -o docs/storybook"
},
"dependencies": {
"@tanstack/react-table": "^8.21.3",
"@types/react-syntax-highlighter": "^15.5.13",
"@xyflow/react": "^12.8.2",
"@yamada-ui/lucide": "^1.10.5",
"@yamada-ui/react": "^1.7.7",
"next": "14.1.0",
"prismjs": "^1.30.0",
"react": "^18",
"react-dom": "^18",
"react-simple-code-editor": "^0.14.1",
"react-syntax-highlighter": "^15.6.1"
},
"devDependencies": {
"@chromatic-com/storybook": "^4.1.1",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.32.0",
"@playwright/test": "^1.55.0",
"@storybook/addon-a11y": "^9.1.3",
"@storybook/addon-docs": "^9.1.3",
"@storybook/addon-essentials": "^8.6.14",
"@storybook/addon-onboarding": "^9.1.3",
"@storybook/addon-vitest": "^9.1.3",
"@storybook/nextjs": "^9.1.3",
"@storybook/nextjs-vite": "^9.1.3",
"@storybook/test-runner": "^0.23.0",
"@storybook/testing-library": "^0.2.2",
"@testing-library/jest-dom": "^6.6.4",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20",
"@types/prismjs": "^1.26.5",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"@vitest/browser": "3.2.4",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"eslint": "^9.32.0",
"eslint-config-next": "14.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-define-config": "^2.1.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-storybook": "^9.1.3",
"eslint-plugin-unused-imports": "^4.1.4",
"globals": "^16.3.0",
"jest-image-snapshot": "^6.5.1",
"jiti": "^2.5.1",
"jsdom": "^26.1.0",
"lefthook": "^1.12.2",
"prettier": "^3.6.2",
"storybook": "^9.1.3",
"typescript": "^5",
"typescript-eslint": "^8.38.0",
"vite": "^5.4.19",
"vitest": "^3.2.4",
"wait-on": "^8.0.4"
}
}