-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.51 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
{
"private": true,
"type": "module",
"scripts": {
"prepare": "husky install",
"format": "prettier --write --ignore-path .gitignore **/*.{ts,js,json,yaml,yml,svelte,html,css}",
"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"
},
"devDependencies": {
"@iconify/svelte": "^3.0.1",
"@jacoblincool/crawler": "^1.1.0",
"@jacoblincool/puddle": "^0.1.1",
"@playwright/test": "^1.29.2",
"@sveltejs/adapter-static": "^1.0.5",
"@sveltejs/kit": "^1.2.2",
"@tailwindcss/typography": "^0.5.9",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/cookie": "^0.5.1",
"@types/debug": "^4.1.7",
"autoprefixer": "^10.4.13",
"daisyui": "^2.47.0",
"debug": "^4.3.4",
"globby": "^13.1.3",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"mdsvex": "^0.10.6",
"postcss": "^8.4.21",
"prettier": "^2.8.3",
"prettier-plugin-svelte": "^2.9.0",
"prettier-plugin-tailwindcss": "^0.2.1",
"rehype-external-links": "^2.0.1",
"svelte": "^3.55.1",
"svelte-check": "^3.0.2",
"svelte-markdown": "^0.2.3",
"tailwindcss": "^3.2.4",
"theme-change": "^2.3.0",
"tslib": "^2.4.1",
"typescript": "^4.9.4",
"vite": "^4.0.4",
"vitest": "^0.27.3"
},
"lint-staged": {
"*.{ts,js,json,yaml,yml,svelte,html,css}": [
"prettier --write"
]
},
"packageManager": "[email protected]"
}