-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.55 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.55 KB
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
{
"name": "word-order",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"test": "playwright test",
"paraglide:compile": "paraglide-js compile --project ./project.inlang --outdir ./src/lib/paraglide --strategy globalVariable baseLocale --emit-ts-declarations --is-server 'import.meta.env.SSR' --silent",
"check": "npm run paraglide:compile && svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "npm run paraglide:compile && svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"compile:og": "magick static/og-image.svg static/og-image.png"
},
"devDependencies": {
"@inlang/paraglide-js": "^2.16.0",
"@playwright/test": "^1.58.2",
"@sveltejs/adapter-vercel": "^6.3.3",
"@sveltejs/kit": "^2.55.0",
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@types/dom-to-image": "^2.6.7",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"dom-to-image": "^2.6.0",
"dom-to-svg": "^0.12.2",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.10.2",
"eslint-plugin-svelte": "^3.16.0",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.10.1",
"svelte": "^4.2.20",
"svelte-check": "^3.8.6",
"svelte-preprocess": "^5.1.4",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"vite": "^5.4.21"
},
"dependencies": {
"@neodrag/svelte": "^2.3.3",
"colorjs.io": "^0.6.1",
"iconify-icon": "^1.0.8"
}
}