-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.99 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
{
"name": "step-viewer",
"version": "0.0.1",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"test": "npm run test:integration && npm run test:unit",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"test:integration": "playwright test",
"test:unit": "vitest"
},
"devDependencies": {
"@fontsource/fira-mono": "^4.5.10",
"@melt-ui/pp": "^0.3.2",
"@melt-ui/svelte": "^0.81.0",
"@neoconfetti/svelte": "^1.0.0",
"@playwright/test": "^1.44.1",
"@sveltejs/adapter-auto": "^3.2.1",
"@sveltejs/adapter-vercel": "^4.0.5",
"@sveltejs/kit": "^2.5.10",
"@sveltejs/vite-plugin-svelte": "^3.1.1",
"@types/three": "^0.159.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.39.3",
"postcss": "^8.4.38",
"postcss-custom-media": "^10.0.6",
"postcss-env-function": "^6.0.0",
"postcss-import": "^15.1.0",
"postcss-media-minmax": "^5.0.0",
"postcss-nested": "^6.0.1",
"prettier": "^3.3.2",
"prettier-plugin-svelte": "^3.2.4",
"stylelint": "^15.11.0",
"stylelint-config-recommended": "^13.0.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-declaration-strict-value": "^1.10.4",
"stylelint-high-performance-animation": "^1.10.0",
"stylelint-order": "^6.0.4",
"stylelint-prettier": "^4.1.0",
"svelte": "^4.2.18",
"svelte-check": "^3.8.0",
"svelte-popperjs": "^1.3.2",
"svelte-preprocess": "^5.1.4",
"tslib": "^2.6.3",
"typescript": "^5.4.5",
"vite": "^5.2.13",
"vitest": "^1.6.0"
},
"type": "module",
"dependencies": {
"@popperjs/core": "^2.11.8",
"OrbitControls": "link:three/examples/jsm/controls/OrbitControls",
"occt-import-js": "0.0.12",
"sveltekit-autoimport": "^1.8.0",
"three": "0.160.0"
}
}