-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.31 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
{
"name": "markuplint-playground",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "run-s lint:eslint lint:markuplint lint:prettier lint:cspell",
"lint:eslint": "eslint src --ext ts,tsx",
"lint:markuplint": "markuplint src/**/*.tsx",
"lint:prettier": "prettier --check 'src/**/*.{js,ts,tsx}'",
"lint:cspell": "cspell src/**/* --no-progress",
"test": "vitest run",
"preview": "vite preview",
"upgrade": "yarn upgrade-interactive --latest"
},
"dependencies": {
"@headlessui/react": "^2.1.2",
"@markuplint/parser-utils": "4.6.5",
"@monaco-editor/react": "4.6.0",
"@shikijs/monaco": "^1.12.0",
"@webcontainer/api": "1.3.0-internal.2",
"@xterm/xterm": "^5.5.0",
"lz-string": "1.5.0",
"markuplint": "4.9.2",
"monaco-editor": "0.50.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-split": "2.0.14",
"semver": "7.6.3",
"shiki": "^1.12.0",
"strip-json-comments": "5.0.1"
},
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@egoist/tailwindcss-icons": "1.8.1",
"@iconify-json/heroicons-solid": "1.1.12",
"@iconify-json/majesticons": "1.1.12",
"@markuplint-dev/eslint-config": "^1.0.1",
"@markuplint-dev/prettier-config": "^1.0.1",
"@markuplint/jsx-parser": "4.7.5",
"@markuplint/react-spec": "4.5.5",
"@playwright/test": "1.46.0",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.4.8",
"@testing-library/react": "16.0.0",
"@testing-library/user-event": "14.5.2",
"@total-typescript/ts-reset": "0.5.1",
"@types/json-schema": "7.0.15",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/semver": "7.5.8",
"@typescript-eslint/eslint-plugin": "7",
"@vitejs/plugin-react": "4.3.1",
"autoprefixer": "10.4.20",
"cspell": "8.13.3",
"eslint": "8",
"eslint-plugin-react": "7.35.0",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-react-refresh": "0.4.9",
"eslint-plugin-testing-library": "6.3.0",
"eslint-plugin-vitest": "0.5.4",
"husky": "^9.1.5",
"jsdom": "24.1.1",
"lint-staged": "^15.2.9",
"npm-run-all2": "6.2.2",
"postcss": "8.4.41",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "0.6.6",
"tailwindcss": "3.4.9",
"typescript": "5.5.4",
"vite": "5.4.0",
"vitest": "2.0.5"
}
}