-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.9 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
{
"name": "website",
"version": "0.0.1",
"private": true,
"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 --write . && eslint . --fix",
"test:integration": "playwright test",
"test:unit": "vitest --ui --coverage",
"storybook": "storybook dev -p 3002 --no-open",
"build:storybook": "storybook build"
},
"devDependencies": {
"@codemirror/lang-json": "^6.0.1",
"@playwright/test": "^1.28.1",
"@storybook/addon-essentials": "^7.4.5",
"@storybook/addon-interactions": "^7.4.5",
"@storybook/addon-links": "^7.4.5",
"@storybook/blocks": "^7.4.5",
"@storybook/svelte": "^7.4.5",
"@storybook/sveltekit": "^7.4.5",
"@storybook/testing-library": "^0.2.1",
"@sveltejs/adapter-auto": "^2.0.0",
"@sveltejs/adapter-static": "^2.0.3",
"@sveltejs/kit": "^1.25.0",
"@testing-library/svelte": "^4.0.3",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"@vitest/coverage-v8": "^0.34.5",
"@vitest/ui": "^0.34.5",
"eslint": "^8.49.0",
"eslint-config-prettier": "*",
"eslint-plugin-storybook": "^0.6.14",
"eslint-plugin-svelte": "^2.33.1",
"happy-dom": "^12.2.0",
"jest-dom": "^4.0.0",
"jsdom": "^22.1.0",
"prettier": "*",
"prettier-plugin-svelte": "*",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.4.5",
"storybook-addon-themes": "^6.1.0",
"svelte": "^4.0.5",
"svelte-check": "^3.4.3",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"vite": "^4.4.2",
"vitest": "^0.34.4"
},
"type": "module",
"dependencies": {
"@storybook/addon-svelte-csf": "^4.0.9",
"html2canvas": "^1.4.1",
"jspdf": "^2.5.1",
"svelte-codemirror-editor": "^1.1.0"
}
}