forked from lark-parser/ide
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.37 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.37 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
{
"name": "lark-ide",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"prepare": "husky",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"format": "prettier --write .",
"lint": "prettier --check . && eslint .",
"test:unit": "vitest",
"test": "npm run test:unit -- --run && npm run test:e2e",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:e2e:headed": "playwright test --headed",
"test:e2e:smoke": "playwright test e2e/demo.test.ts",
"test:e2e:chrome": "playwright test --project=chromium",
"test:e2e:firefox": "playwright test --project=firefox",
"test:e2e:webkit": "playwright test --project=webkit",
"test:e2e:mobile": "playwright test --project='Mobile Chrome' --project='Mobile Safari'",
"test:e2e:report": "playwright show-report",
"test:e2e:install": "playwright install",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"devDependencies": {
"@chromatic-com/storybook": "^4.0.0",
"@eslint/compat": "^1.2.5",
"@eslint/js": "^9.18.0",
"@melt-ui/pp": "^0.3.2",
"@melt-ui/svelte": "^0.86.6",
"@playwright/test": "^1.49.1",
"@storybook/addon-a11y": "^9.0.12",
"@storybook/addon-docs": "^9.0.12",
"@storybook/addon-svelte-csf": "^5.0.3",
"@storybook/addon-vitest": "^9.0.12",
"@storybook/sveltekit": "^9.0.12",
"@sveltejs/adapter-static": "^3.0.8",
"@sveltejs/kit": "^2.16.0",
"@sveltejs/vite-plugin-svelte": "^5.0.0",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/postcss": "^4.1.10",
"@tailwindcss/typography": "^0.5.15",
"@tailwindcss/vite": "^4.1.10",
"@tsconfig/svelte": "^5.0.4",
"@types/node": "^22",
"@vitest/browser": "^3.2.3",
"@vitest/coverage-v8": "^3.2.4",
"autoprefixer": "^10.4.21",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-storybook": "^9.0.12",
"eslint-plugin-svelte": "^3.0.0",
"globals": "^16.0.0",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"monaco-types": "^0.1.0",
"phosphor-svelte": "^3.0.1",
"playwright": "^1.53.0",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"storybook": "^9.0.12",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"tailwind-scrollbar": "^4.0.2",
"tailwindcss": "^4.1.10",
"typescript": "^5.0.0",
"typescript-eslint": "^8.20.0",
"vite": "^6.2.6",
"vite-plugin-devtools-json": "^0.2.0",
"vitest": "^3.2.3",
"vitest-browser-svelte": "^0.1.0"
},
"dependencies": {
"@codemirror/autocomplete": "^6.18.6",
"@codemirror/commands": "^6.8.1",
"@codemirror/lang-lezer": "^6.0.2",
"@codemirror/language": "^6.11.1",
"@codemirror/lint": "^6.8.5",
"@codemirror/search": "^6.5.11",
"@codemirror/state": "^6.5.2",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.37.2",
"@fontsource/fira-mono": "^5.2.6",
"@lezer/highlight": "^1.2.1",
"bulma": "^1.0.4",
"codemirror": "^6.0.2",
"monaco-editor": "^0.52.2",
"pyodide": "^0.27.7",
"thememirror": "^2.0.1"
}
}