-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.7 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.7 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
{
"name": "social-security-tools",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --fail-on-warnings",
"lint": "biome check .",
"fix": "biome check --write .",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"chromatic": "chromatic --exit-zero-on-changes",
"test": "vitest run",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage",
"quality": "npm run lint && npm run check",
"setup": "./scripts/setup.sh"
},
"devDependencies": {
"@biomejs/biome": "^2.2.6",
"@opentelemetry/api": "^1.9.0",
"@storybook/addon-essentials": "^8.6.14",
"@storybook/addon-interactions": "^8.6.14",
"@storybook/addon-links": "^8.6.14",
"@storybook/addon-mdx-gfm": "^8.6.14",
"@storybook/blocks": "^8.6.14",
"@storybook/svelte": "^8.6.14",
"@storybook/sveltekit": "^8.6.14",
"@storybook/test": "^8.6.14",
"@sveltejs/adapter-static": "^3.0.8",
"@sveltejs/kit": "^2.53.0",
"@sveltejs/vite-plugin-svelte": "^6.2.0",
"@types/node": "^24.5.2",
"@typescript-eslint/types": "^8.57.0",
"@vitest/coverage-v8": "^3.2.4",
"chromatic": "^13.3.5",
"posthog-js": "^1.77.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"storybook": "^8.6.17",
"svelte": "^5.53.12",
"svelte-check": "^4.2.1",
"terser": "^5.43.1",
"tslib": "^2.4.1",
"typescript": "^5.3.3",
"vite": "^7.3.2",
"vitest": "^3.1.4"
},
"type": "module",
"engines": {
"node": "^22.0.0"
},
"dependencies": {
"@rrweb/types": "^2.0.0-alpha.18"
}
}