-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.87 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
{
"name": "parois-du-quebec",
"version": "0.0.1",
"private": true,
"scripts": {
"dev:kit": "vite dev",
"build": "pnpm run build:translations && vite build && pnpm run build:sitemap",
"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 .",
"dev": "concurrently -n i18n,kit \"pnpm run watch:translations\" \"pnpm run dev:kit\"",
"build:sitemap": "pnpm dlx svelte-sitemap --domain https://www.paroisduquebec.ca",
"rebuild": "pnpm run clean && pnpm run build",
"clean": "rm -rf .svelte-kit && rm -rf build && rm src/generated/translations.ts",
"build:translations": "messageformat src/translations/ --outfile=src/generated/translations.ts",
"watch:translations": "pnpm run build:translations && onchange 'src/translations/**' -- pnpm run build:translations"
},
"devDependencies": {
"@messageformat/cli": "^4.0.1",
"@messageformat/core": "^3.3.0",
"@messageformat/runtime": "^3.0.1",
"@sveltejs/adapter-auto": "^3.0.0",
"@sveltejs/adapter-static": "^3.0.2",
"@sveltejs/enhanced-img": "^0.3.0",
"@sveltejs/kit": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^3.0.0",
"@types/eslint": "^8.56.7",
"concurrently": "^8.2.2",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.36.0",
"globals": "^15.0.0",
"onchange": "^7.1.0",
"path": "^0.12.7",
"prettier": "^3.1.1",
"prettier-plugin-svelte": "^3.1.2",
"rollup-plugin-svelte-svg": "1.0.0-beta.6",
"svelte": "^4.2.7",
"svelte-check": "^3.6.0",
"svelte-preprocess-markdown": "^2.7.3",
"svelte-seo": "^1.6.1",
"svelte-sitemap": "^2.6.0",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"typescript-eslint": "^8.0.0-alpha.20",
"vite": "^5.0.3"
},
"type": "module"
}