-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 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
64
{
"name": "calummm.com",
"version": "0.0.1",
"scripts": {
"start": "npm run dev",
"dev": "vite dev",
"build": "vite build",
"package": "svelte-kit package",
"preview": "vite preview",
"test": "vitest",
"coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check --plugin-search-dir=. . && eslint .",
"format": "prettier --write --plugin-search-dir=. .",
"prepare": "husky install",
"pre-commit": "lint-staged"
},
"devDependencies": {
"@giscus/svelte": "^2.4.0",
"@playwright/test": "^1.45.1",
"@poppanator/sveltekit-svg": "^3.0.1",
"@sveltejs/adapter-auto": "^2.1.1",
"@sveltejs/adapter-netlify": "^2.0.8",
"@sveltejs/kit": "^1.30.4",
"@tailwindcss/typography": "^0.5.13",
"@testing-library/svelte": "^3.2.2",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vite-pwa/sveltekit": "^0.2.10",
"@vitest/coverage-c8": "^0.30.1",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-svelte3": "^4.0.0",
"husky": "^8.0.3",
"jsdom": "^21.1.2",
"lint-staged": "^13.3.0",
"mdsvex": "^0.10.6",
"postcss": "^8.4.39",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.10.1",
"rehype-autolink-headings": "^6.1.1",
"rehype-slug": "^5.1.0",
"sass": "^1.77.7",
"svelte": "^3.59.2",
"svelte-check": "^3.8.4",
"svelte-preprocess": "^5.1.4",
"tailwindcss": "^3.4.4",
"tailwindcss-global-dark": "^1.0.1",
"tslib": "^2.6.3",
"typescript": "^5.5.3",
"vite": "^4.5.3",
"vitest": "^0.30.1"
},
"type": "module",
"lint-staged": {
"*.{js,ts,svelte,html}": [
"eslint",
"prettier --write"
]
}
}