-
Notifications
You must be signed in to change notification settings - Fork 2
/
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": "website",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"test": "npm run test:integration && npm run test:unit",
"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 .",
"test:integration": "playwright test",
"test:unit": "vitest",
"pages:build": "vite build -w",
"pages:dev": "wrangler pages dev -e dev --compatibility-date=2024-01-17 .svelte-kit/cloudflare",
"pages:deploy": "npm run build && wrangler pages deploy .svelte-kit/cloudflare"
},
"devDependencies": {
"@iconify/json": "^2.2.165",
"@playwright/test": "^1.28.1",
"@sveltejs/kit": "^1.27.4",
"@types/jsonwebtoken": "^9.0.5",
"@types/markdown-it": "^13.0.7",
"@types/uuid": "^9.0.7",
"@types/youtube-player": "^5.5.11",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-svelte": "^2.30.0",
"prettier": "^3.0.0",
"prettier-plugin-svelte": "^3.0.0",
"svelte": "^4.2.7",
"svelte-check": "^3.6.0",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"unplugin-icons": "^0.18.1",
"vite": "^4.5.2",
"vitest": "^0.32.2"
},
"dependencies": {
"@cloudflare/workers-types": "^4.20240117.0",
"@sveltejs/adapter-cloudflare": "^2.3.3",
"axios": "^1.6.2",
"blurhash": "^2.0.5",
"highlight.js": "^11.9.0",
"jsonwebtoken": "^9.0.2",
"localstorage-slim": "^2.7.0",
"markdown-it": "^13.0.2",
"markdown-it-emoji": "^2.0.2",
"nanoid": "^5.0.4",
"plyr": "^3.7.8",
"posthog-js": "^1.96.1",
"socket.io-client": "^4.7.2",
"svelte-icons": "^2.1.0",
"svelte-preprocess": "^5.1.1",
"uuid": "^9.0.1"
}
}