forked from syntaxfm/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.45 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "syntax",
"version": "2.1.4",
"private": true,
"scripts": {
"dev": "./scripts/syntax_website_go",
"preheat": "./scripts/syntax_website_go --env-only",
"vite-dev": "vite dev",
"copy-files": "zx ./why_do_i_need_this.mjs",
"build": "run-s --print-name build:svelte copy-files",
"build:svelte": "vite build",
"preview": "vite preview",
"test": "svelte-kit sync && playwright test",
"test:ui": "svelte-kit sync && playwright test --ui",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test:unit": "svelte-kit sync && vitest",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"site:update": "pnpm update -i -L",
"db:studio": "prisma studio",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:seed": "prisma db seed",
"i-changed-the-schema": "pnpm run db:push && pnpm run db:generate",
"postinstall": "pnpm db:generate && pnpm exec playwright install"
},
"devDependencies": {
"@playwright/test": "^1.42.1",
"@sveltejs/kit": "^2.5.5",
"@sveltejs/vite-plugin-svelte": "^3.0.2",
"@types/chroma-js": "^2.4.4",
"@types/js-cookie": "^3.0.6",
"@types/node": "^20.12.3",
"@types/speakingurl": "^13.0.6",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.35.1",
"postcss": "^8.4.38",
"postcss-custom-media": "^10.0.4",
"postcss-import": "^16.1.0",
"postcss-import-ext-glob": "^2.1.1",
"postcss-load-config": "^5.0.3",
"postcss-preset-env": "^9.5.4",
"prettier": "^3.2.5",
"prettier-plugin-svelte": "^3.2.2",
"prisma": "5.12.0",
"svelte": "^4.2.12",
"svelte-check": "^3.6.9",
"svelte-preprocess": "^5.1.3",
"tslib": "^2.6.2",
"typescript": "^5.4.3",
"vite": "^5.2.8",
"vitest": "^1.4.0"
},
"type": "module",
"engines": {
"node": ">=18.13 || ^20",
"pnpm": ">=8"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.6.2",
"@deepgram/sdk": "^2.4.0",
"@ffmpeg.wasm/core-mt": "0.13.2",
"@ffmpeg.wasm/main": "^0.13.1",
"@leveluptuts/svelte-side-menu": "^1.0.7",
"@oddbird/popover-polyfill": "^0.4.1",
"@prisma/client": "5.12.0",
"@sentry/profiling-node": "^7.109.0",
"@sentry/sveltekit": "^7.109.0",
"@sparticuz/chromium": "^122.0.0",
"@svelte-put/shortcut": "^3.1.0",
"@sveltejs/adapter-vercel": "^5.2.0",
"@types/core-js": "^2.5.8",
"@upstash/redis": "^1.29.0",
"chroma-js": "^2.4.2",
"core-js": "^3.36.1",
"date-fns": "^3.6.0",
"flexsearch": "^0.7.43",
"gpt-3-encoder": "^1.1.4",
"gray-matter": "^4.0.3",
"js-cookie": "^3.0.5",
"media-chrome": "^3.2.0",
"npm-run-all": "^4.1.5",
"openai": "^3.3.0",
"p-map": "^7.0.2",
"puppeteer-core": "^22.6.2",
"rehype-autolink-headings": "^7.1.0",
"rehype-highlight": "^7.0.0",
"rehype-raw": "^7.0.0",
"rehype-stringify": "^10.0.0",
"remark-gfm": "^4.0.0",
"remark-heading-id": "^1.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.0",
"sk-form-data": "^1.0.1",
"speakingurl": "^14.0.1",
"svelte-french-toast": "1.2.0",
"svelte-local-storage-store": "^0.6.4",
"sveltekit-search-params": "^2.1.2",
"ts-node": "^10.9.2",
"unified": "^11.0.4",
"waait": "^1.0.5",
"youtube-video-element": "^1.0.0",
"zx": "^7.2.3"
},
"prisma": {
"seed": "node --loader ts-node/esm prisma/seed.ts"
}
}