-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
62 lines (62 loc) · 1.98 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
{
"name": "svelte-blog",
"version": "0.0.2",
"scripts": {
"dev": "vite dev",
"generateData": "ts-node .scripts/pre/index.ts",
"build": "ts-node .scripts/pre/index.ts && vite build && ts-node .scripts/post/index.ts",
"report": "ts-node .scripts/pre/index.ts && vite build && ts-node .scripts/post/index.ts",
"package": "svelte-kit package",
"preview": "vite preview",
"prepare": "svelte-kit sync",
"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=. .",
"source": "ts-node src/lib/preSource/index.ts"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^6.5.1",
"@giscus/svelte": "^2.4.0",
"@playwright/test": "^1.41.2",
"@sveltejs/adapter-static": "next",
"@sveltejs/kit": "next",
"@tailwindcss/typography": "^0.5.10",
"@types/eslint": "^8.21.3",
"@types/node": "^20.11.20",
"@types/prettier": "^2.7.3",
"@types/rollup-plugin-visualizer": "^4.2.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"autoprefixer": "^10.4.17",
"clsx": "^2.1.0",
"dotenv": "^16.4.5",
"eslint": "^8.36.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte3": "^4.0.0",
"feed": "^4.2.2",
"mdsvex": "^0.11.0",
"node-fetch": "^3.3.2",
"path-to-regexp": "^6.2.1",
"postcss": "^8.4.35",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.9.0",
"prettier-plugin-tailwindcss": "^0.4.1",
"rehype-add-classes": "^1.0.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-external-links": "^3.0.0",
"rehype-slug": "^6.0.0",
"rollup-plugin-visualizer": "^5.12.0",
"svelte": "^3.59.2",
"svelte-check": "^3.6.4",
"svelte-preprocess": "^5.1.3",
"svelte-sitemap": "^2.6.0",
"tailwindcss": "^3.2.7",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"vite": "^2.9.18",
"yaml": "^2.4.0"
},
"type": "module"
}