-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.08 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
{
"name": "giveabet",
"version": "0.0.1",
"private": true,
"main": "index.ts",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"test": "playwright test",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test:unit": "vitest run src --inspect --threads=false --coverage",
"test:watch": "vitest src",
"lint": "prettier --plugin-search-dir . --check . && eslint . --fix --ignore-path .eslintignore",
"format": "prettier --plugin-search-dir . --write .",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"devDependencies": {
"@playwright/test": "^1.28.1",
"@storybook/addon-essentials": "^7.0.20",
"@storybook/addon-interactions": "^7.0.20",
"@storybook/addon-links": "^7.0.20",
"@storybook/blocks": "^7.0.20",
"@storybook/builder-vite": "^7.0.22",
"@storybook/svelte": "^7.0.20",
"@storybook/sveltekit": "^7.0.20",
"@storybook/testing-library": "^0.0.14-next.2",
"@sveltejs/adapter-auto": "^2.0.0",
"@sveltejs/kit": "^1.5.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/svelte": "^3.2.2",
"@types/jest": "^29.5.2",
"@types/jest-axe": "^3.5.5",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"@vitest/coverage-c8": "^0.32.0",
"autoprefixer": "^10.4.14",
"clsx": "^1.2.1",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-storybook": "^0.6.12",
"eslint-plugin-svelte": "^2.26.0",
"jest": "^29.5.0",
"jest-axe": "^7.0.1",
"jsdom": "^22.1.0",
"postcss": "^8.4.24",
"postcss-import": "^15.1.0",
"prettier": "^2.8.0",
"prettier-plugin-svelte": "^2.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.0.20",
"svelte": "^3.54.0",
"svelte-check": "^3.0.1",
"tailwindcss": "^3.3.2",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"vite": "^4.3.0",
"vitest": "^0.30.0"
},
"type": "module",
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}