This repository was archived by the owner on Jan 16, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.03 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.03 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
{
"name": "text2cad",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"test": "npm run test:e2e && npm run test:unit run",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"fmt": "prettier --plugin-search-dir . --write .",
"test:e2e": "playwright test",
"test:unit": "vitest"
},
"devDependencies": {
"@playwright/test": "^1.28.1",
"@sveltejs/adapter-vercel": "^5.10.3",
"@sveltejs/kit": "^2.22.2",
"@sveltejs/vite-plugin-svelte": "^3.0.2",
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/svelte": "^4.0.5",
"@types/node": "^24.0.4",
"@types/object.groupby": "^1.0.3",
"@types/testing-library__jest-dom": "^6.0.0",
"@types/three": "^0.160.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitest/ui": "^1.6.1",
"autoprefixer": "^10.4.16",
"dotenv": "^16.3.1",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte": "^2.30.0",
"jsdom": "^23.0.1",
"postcss": "^8.4.31",
"postcss-custom-media": "^10.0.2",
"prettier": "^2.8.0",
"prettier-plugin-svelte": "^2.10.1",
"svelte": "^4.2.19",
"svelte-check": "^3.4.3",
"tailwindcss": "^3.3.3",
"tslib": "^2.4.1",
"typescript": "^5.9.3",
"vite": "^5.0.3",
"vite-plugin-mkcert": "^1.17.9",
"vitest": "1.6.1",
"vitest-dom": "^0.1.1"
},
"type": "module",
"dependencies": {
"@kittycad/lib": "^3.1.5",
"@kittycad/react-shared": "^0.1.6",
"@threlte/core": "^6.1.0",
"@threlte/extras": "^7.3.0",
"@types/core-js": "^2.5.8",
"@types/react": "^18.3.17",
"@types/react-dom": "^18.3.5",
"@vercel/analytics": "^1.1.1",
"@vercel/speed-insights": "^1.0.2",
"core-js-pure": "^3.45.1",
"object.groupby": "^1.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"svelte-autosize": "^1.1.0",
"three": "^0.160.0"
}
}