-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.97 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
78
79
80
81
{
"name": "website-frontend",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "npm run dev",
"dev": "vite dev --port 3000 --host 0.0.0.0",
"build": "vite build",
"prod": "node ./build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test": "npm run test-vite && npm run test-storybook",
"test:coverage": "npm run test-vite:coverage && npm run test-storybook:coverage",
"test-vite": "vitest --run",
"test-vite:coverage": "npm run test-vite -- --coverage",
"test-vite:watch": "vitest --watch",
"test-storybook": "test-storybook --browsers firefox",
"test-storybook:coverage": "npm run test-storybook -- --coverage",
"test-storybook:ci": "concurrently -k -s first -n \"SB,TEST\" -c \"magenta,blue\" \"npx http-server storybook-static --port 6006 --silent\" \"npx wait-on tcp:127.0.0.1:6006 && npm run test-storybook:coverage\"",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"devDependencies": {
"@storybook/addon-a11y": "^8.4.2",
"@storybook/addon-coverage": "^1.0.1",
"@storybook/addon-essentials": "^8.4.2",
"@storybook/addon-interactions": "^8.4.2",
"@storybook/addon-links": "^8.4.2",
"@storybook/blocks": "^8.4.2",
"@storybook/jest": "^0.2.3",
"@storybook/svelte": "^8.4.2",
"@storybook/sveltekit": "^8.4.2",
"@storybook/test": "^8.4.2",
"@storybook/test-runner": "^0.17.0",
"@storybook/testing-library": "^0.2.2",
"@sveltejs/adapter-auto": "^3.2.0",
"@sveltejs/kit": "^2.5.5",
"@sveltejs/vite-plugin-svelte": "^3.1.0",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"autoprefixer": "^10.4.19",
"axe-playwright": "^2.0.1",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-svelte": "^2.37.0",
"postcss": "^8.4.38",
"postcss-load-config": "^5.0.3",
"prettier": "^3.2.5",
"prettier-plugin-svelte": "^3.2.2",
"prettier-plugin-tailwindcss": "^0.5.13",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^8.4.2",
"svelte": "^4.2.13",
"svelte-check": "^3.6.9",
"svelte-icons-pack": "^3.1.3",
"svelte-preprocess": "^5.1.3",
"tailwindcss": "^3.4.3",
"tslib": "^2.6.2",
"typescript": "^5.4.5",
"vite": "^5.2.8",
"vitest": "^1.4.0"
},
"type": "module",
"dependencies": {
"@vitest/coverage-v8": "^1.4.0",
"clsx": "^2.1.1",
"lucide-svelte": "^0.378.0",
"mode-watcher": "^0.3.0",
"storybook-addon-pseudo-states": "^3.0.1",
"tailwind-merge": "^2.3.0",
"tailwind-variants": "^0.2.1"
}
}