-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.55 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
{
"name": "pal.ai",
"version": "2.0.0",
"type": "module",
"packageManager": "pnpm@8.12.1",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"sync": "svelte-kit sync",
"fmt": "prettier --plugin=prettier-plugin-svelte --check .",
"fmt:fix": "prettier --plugin=prettier-plugin-svelte --write .",
"lint": "pnpm lint:html && pnpm lint:css && pnpm lint:js && pnpm lint:svelte",
"lint:html": "linthtml src/**/*.html",
"lint:css": "stylelint src/**/*.css",
"lint:js": "eslint **/*.{js,svelte,ts}",
"lint:svelte": "svelte-check --tsconfig ./tsconfig.json"
},
"devDependencies": {
"@linthtml/linthtml": "^0.9.5",
"@linthtml/linthtml-config-recommended": "^0.1.0",
"@sveltejs/adapter-vercel": "^4.0.3",
"@sveltejs/kit": "^2.0.6",
"@sveltejs/vite-plugin-svelte": "^3.0.1",
"@types/w3c-image-capture": "^1.0.10",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.35.1",
"htmlnano": "^2.1.0",
"prettier": "^3.1.1",
"prettier-plugin-svelte": "^3.1.2",
"stylelint": "^16.0.2",
"stylelint-config-standard": "^35.0.0",
"svelte": "^4.2.8",
"svelte-check": "^3.6.2",
"terser": "^5.26.0",
"typescript": "^5.3.3",
"valibot": "^0.24.1",
"vite": "^5.0.10"
}
}