-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
69 lines (69 loc) · 2.15 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
{
"type": "module",
"name": "pause-ai",
"private": true,
"scripts": {
"dev": "vite dev --host 0.0.0.0",
"build": "vite build && run-s _postbuild:*",
"build:dev": "vite build --mode development && run-s _postbuild:*",
"_postbuild:pagefind": "tsx scripts/create-pagefind-index.ts",
"_postbuild:exclude": "tsx scripts/exclude-from-edge-function.ts",
"_postbuild:caching": "tsx scripts/opt-in-to-caching.ts",
"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 --check . && eslint .",
"format": "prettier --write .",
"prepare": "husky"
},
"devDependencies": {
"@sveltejs/adapter-netlify": "^4.3.4",
"@sveltejs/kit": "^2.6.4",
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@types/escape-html": "^1.0.4",
"@types/glidejs__glide": "^3.6.5",
"@types/node": "^20.16.11",
"@types/ua-parser-js": "^0.7.39",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-svelte": "^2.44.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"mdsvex": "^0.11.2",
"npm-run-all2": "^6.2.3",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.7",
"svelte": "^4.2.19",
"svelte-check": "^4.0.4",
"tslib": "^2.7.0",
"tsx": "^4.19.1",
"typescript": "^5.6.3",
"vite": "^5.4.8"
},
"dependencies": {
"@fontsource/roboto-slab": "^5.1.0",
"@fontsource/saira-condensed": "^5.1.0",
"@glidejs/glide": "^3.6.2",
"@pagefind/default-ui": "^1.1.1",
"@prgm/sveltekit-progress-bar": "^2.0.0",
"@sveltejs/enhanced-img": "~0.3.10",
"@types/mapbox-gl": "^2.7.21",
"clipboard-polyfill": "^4.1.0",
"escape-html": "^1.0.3",
"github-slugger": "^2.0.0",
"html-to-image": "^1.11.11",
"lucide-svelte": "^0.325.0",
"mapbox-gl": "^3.7.0",
"pagefind": "^1.1.1",
"rehype-slug": "^5.1.0",
"remark-toc": "^9.0.0",
"remark-unwrap-images": "^3.0.1",
"shiki": "^0.14.7",
"svelte-french-toast": "^1.2.0",
"svelte-markdown": "^0.4.1",
"svelte-toc": "^0.5.9",
"ua-parser-js": "^1.0.39"
}
}