-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
48 lines (48 loc) · 1.47 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
{
"name": "svelte-component-test-recipes",
"description": "Svelte component test recipes using Vitest & Testing Library",
"author": "David Peng <davipondev@gmail.com>",
"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",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"devDependencies": {
"@sveltejs/adapter-auto": "2.1.1",
"@sveltejs/kit": "1.30.4",
"@testing-library/dom": "^9.0.0",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/svelte": "^4.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/testing-library__jest-dom": "^5.14.5",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"@vitest/coverage-c8": "^0.33.0",
"axios": "^1.2.1",
"eslint": "^8.30.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-svelte3": "^4.0.0",
"jsdom": "^22.0.0",
"msw": "^1.0.0",
"prettier": "^3.0.0",
"prettier-plugin-svelte": "^3.0.0",
"svelte": "^4.0.0",
"svelte-check": "^3.0.0",
"svelte-fragment-component": "^1.2.0",
"svelte-htm": "^1.2.0",
"svelte-preprocess": "^5.0.0",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"vite": "^4.0.2",
"vitest": "0.34.6"
},
"type": "module"
}