-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.19 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": "docs.sveltin.io",
"version": "0.3.0",
"type": "module",
"packageManager": "[email protected]",
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@indaco/svelte-iconoir": "^3.3.1",
"@sveltejs/adapter-static": "2.0.1",
"@sveltejs/kit": "1.8.3",
"@sveltinio/essentials": "^0.6.1",
"@sveltinio/remark-headings": "^1.0.1",
"@sveltinio/seo": "^0.3.3",
"@sveltinio/services": "^0.3.4",
"@sveltinio/widgets": "^0.6.1",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/line-clamp": "^0.4.2",
"@tailwindcss/typography": "^0.5.9",
"@types/gtag.js": "^0.0.10",
"@types/lodash-es": "^4.17.6",
"@types/node": "^18.14.0",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"ajv": "^8.12.0",
"autoprefixer": "^10.4.13",
"cssnano": "^5.1.15",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-svelte3": "^4.0.0",
"eslint-plugin-tailwindcss": "^3.9.0",
"husky": "^8.0.3",
"install": "^0.13.0",
"lodash-es": "^4.17.21",
"mdsvex": "^0.10.6",
"mdsvex-relative-images": "^1.0.3",
"postcss": "^8.4.21",
"postcss-import": "^15.1.0",
"postcss-load-config": "^4.0.1",
"postcss-nested": "^5.0.6",
"prettier": "^2.8.4",
"prettier-plugin-svelte": "^2.9.0",
"prettier-plugin-tailwindcss": "^0.1.13",
"rehype-autolink-headings": "^6.1.1",
"rehype-external-links": "^2.0.1",
"rehype-slug": "^5.1.0",
"remark-emoji": "^3.1.1",
"remark-reading-time": "1.0.1",
"rimraf": "^4.1.2",
"svelte": "^3.55.1",
"svelte-check": "^3.0.3",
"svelte-preprocess": "^5.0.1",
"tailwindcss": "^3.2.7",
"tslib": "^2.5.0",
"typescript": "^4.9.5",
"vite": "^4.1.4"
},
"scripts": {
"dev": "svelte-kit sync && vite dev",
"clean": "rimraf build",
"clean:all": "rimraf .svelte-kit node_modules build",
"build": "npm run clean && svelte-kit sync && 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 --plugin-search-dir=. --check . && eslint .",
"format": "prettier --plugin-search-dir=. --write ."
}
}