-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.22 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
{
"name": "svelte-uvu-testing",
"version": "0.0.1",
"license": "BSD-3-Clause",
"description": "SvelteKit uvu testing: how you can easily add fast component and utility function unit tests to your Svelte app using uvu with TypeScript.",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"package": "svelte-kit package",
"preview": "vite preview",
"test": "playwright test",
"test:unit": "uvu tests/lib -r tsm -r module-alias/register -r tests/setup/register -i setup",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check --plugin-search-dir=. . && eslint --ignore-path .gitignore .",
"lint:css": "stylelint \"src/**/*.{css,svelte}\"",
"prettier:check": "prettier --check --plugin-search-dir=. .",
"format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. ."
},
"_moduleAliases": {
"$lib": "src/lib",
"$tests": "tests"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.6.1",
"@fontsource/fira-code": "^4.5.13",
"@fontsource/open-sans": "^4.5.14",
"@playwright/test": "^1.33.0",
"@sveltejs/adapter-auto": "2.0.1",
"@sveltejs/kit": "1.15.11",
"@testing-library/dom": "^9.2.0",
"@testing-library/svelte": "^3.2.2",
"@testing-library/user-event": "^14.4.3",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"commitlint": "^17.6.1",
"esbuild": "^0.17.18",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-svelte3": "^4.0.0",
"husky": "^8.0.3",
"jsdom": "^22.0.0",
"module-alias": "^2.2.2",
"postcss-html": "^1.5.0",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.10.0",
"stylelint": "^15.6.1",
"stylelint-config-recommended": "^12.0.0",
"stylelint-config-standard": "^33.0.0",
"svelte": "^3.58.0",
"svelte-check": "^3.2.0",
"svelte-preprocess": "^5.0.3",
"tslib": "^2.5.0",
"tsm": "^2.3.0",
"typescript": "~5.0.4",
"uvu": "0.5.4",
"vite": "^4.3.4",
"vite-register": "^0.0.9"
},
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/rodneylab/sveltekit-uvu-testing"
},
"bugs": {
"url": "https://github.com/rodneylab/sveltekit-uvu-testing/issues"
}
}