-
-
Notifications
You must be signed in to change notification settings - Fork 508
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 4.01 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 4.01 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "exceptionless",
"version": "8.0.0",
"private": true,
"scripts": {
"dev": "cross-env NODE_OPTIONS=--trace-warnings vite dev",
"dev:api": "cross-env ASPNETCORE_URLS=https://be.exceptionless.io/ vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "npm run lint:prettier && npm run lint:eslint",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check .",
"format": "npm run format:prettier && npm run format:eslint",
"format:eslint": "eslint . --fix",
"format:prettier": "prettier --write .",
"generate-models": "node scripts/generate-api.mjs",
"generate-templates": "swagger-typescript-api generate-templates -o api-templates",
"test:e2e": "playwright test",
"test:unit": "vitest run",
"test": "npm run test:unit -- --run && npm run test:e2e",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"upgrade": "ncu -i"
},
"devDependencies": {
"@chromatic-com/storybook": "^5.1.2",
"@eslint/compat": "^2.0.5",
"@eslint/js": "^10.0.1",
"@iconify-json/lucide": "^1.2.102",
"@playwright/test": "^1.59.1",
"@storybook/addon-a11y": "^10.3.5",
"@storybook/addon-docs": "^10.3.5",
"@storybook/addon-svelte-csf": "^5.1.2",
"@storybook/sveltekit": "^10.3.5",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.57.1",
"@sveltejs/vite-plugin-svelte": "^6.2.4",
"@tailwindcss/vite": "^4.2.2",
"@tanstack/eslint-plugin-query": "^5.99.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/svelte": "^5.3.1",
"@types/eslint": "^9.6.1",
"@types/node": "^25.6.0",
"@types/throttle-debounce": "^5.0.2",
"cross-env": "^10.1.0",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-perfectionist": "^5.8.0",
"eslint-plugin-storybook": "^10.3.5",
"eslint-plugin-svelte": "^3.17.0",
"globals": "^17.5.0",
"jsdom": "^29.0.2",
"prettier": "^3.8.3",
"prettier-plugin-svelte": "^3.5.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"storybook": "^10.3.5",
"svelte": "^5.55.4",
"svelte-check": "^4.4.6",
"swagger-typescript-api": "^13.6.10",
"tslib": "^2.8.1",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.2",
"vite": "^7.3.2",
"vitest": "4.1.4",
"vitest-websocket-mock": "^0.5.0",
"zod": "^4.3.6"
},
"dependencies": {
"@exceptionless/browser": "^3.1.0",
"@exceptionless/fetchclient": "^0.44.0",
"@internationalized/date": "^3.12.1",
"@lucide/svelte": "^1.8.0",
"@stripe/stripe-js": "^9.2.0",
"@tanstack/svelte-form": "^1.29.0",
"@tanstack/svelte-query": "^6.1.16",
"@tanstack/svelte-query-devtools": "^6.1.16",
"@tanstack/svelte-table": "^9.0.0-alpha.10",
"@types/d3-scale": "^4.0.9",
"@types/d3-shape": "^3.1.8",
"bits-ui": "^2.17.3",
"clsx": "^2.1.1",
"d3-scale": "^4.0.2",
"dompurify": "^3.4.0",
"kit-query-params": "^0.0.26",
"layerchart": "^2.0.0-next.46",
"mode-watcher": "^1.1.0",
"oidc-client-ts": "^3.5.0",
"pretty-ms": "^9.3.0",
"runed": "^0.37.1",
"shiki": "^4.0.2",
"svelte-intercom": "^0.0.35",
"svelte-sonner": "^1.1.0",
"svelte-stripe": "^2.0.0",
"svelte-time": "^2.1.0",
"tailwind-merge": "^3.5.0",
"tailwind-variants": "^3.2.2",
"tailwindcss": "^4.2.2",
"throttle-debounce": "^5.0.2",
"tw-animate-css": "^1.4.0"
},
"type": "module",
"overrides": {
"storybook": "$storybook"
}
}