-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.02 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
{
"name": "l-systems",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json && tsc -p tsconfig.node.json",
"test": "bun playwright test",
"test:ui": "bun playwright test --ui"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^4.0.3",
"@tsconfig/svelte": "^5.0.4",
"svelte": "^5.13.0",
"svelte-check": "^4.1.1",
"tslib": "^2.8.1",
"typescript": "~5.6.3",
"vite": "^5.4.11"
},
"dependencies": {
"@codemirror/lang-javascript": "^6.2.2",
"@playwright/test": "1.47.0",
"@types/d3-drag": "^3.0.7",
"@types/d3-scale": "^4.0.8",
"@types/d3-scale-chromatic": "^3.1.0",
"@types/d3-selection": "^3.0.11",
"@types/d3-zoom": "^3.0.8",
"d3-drag": "^3.0.0",
"d3-scale": "^4.0.2",
"d3-scale-chromatic": "^3.1.0",
"d3-selection": "^3.0.0",
"d3-zoom": "^3.0.0",
"svelte-codemirror-editor": "^1.4.1"
}
}