This repository has been archived by the owner on Dec 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.86 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
{
"name": "translation-base",
"version": "0.0.1",
"scripts": {
"dev": "concurrently -n kit,i18n \"pnpm run watch:translations\" \"pnpm run dev:kit\"",
"dev:kit": "svelte-kit dev",
"build": "pnpm run build:translations && svelte-kit build",
"rebuild": "pnpm run clean && pnpm run build",
"clean": "rm -rf .svelte-kit && rm -rf build && rm src/generated/translations.ts",
"deploy:gh": "node ./gh-pages-deploy.js",
"deploy": "pnpm run rebuild && pnpm run deploy:gh",
"publish": "pnpm run deploy",
"preview": "svelte-kit preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --ignore-path .gitignore --check --plugin-search-dir=. . && eslint --ignore-path .gitignore .",
"format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. .",
"build:translations": "messageformat src/translations/ --outfile=src/generated/translations.ts",
"watch:translations": "pnpm run build:translations && onchange 'src/translations/**' -- pnpm run build:translations"
},
"devDependencies": {
"@antfu/ni": "^0.9.3",
"@messageformat/cli": "^3.0.1",
"@messageformat/core": "^3.0.0",
"@sveltejs/adapter-static": "^1.0.0-next.20",
"@sveltejs/kit": "next",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"concurrently": "^6.2.1",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-svelte3": "^3.2.0",
"gh-pages": "^3.2.3",
"onchange": "^7.1.0",
"prettier": "~2.2.1",
"prettier-plugin-svelte": "^2.2.0",
"svelte": "^3.34.0",
"svelte-check": "^2.0.0",
"svelte-preprocess": "^4.9.0",
"tslib": "^2.0.0",
"typescript": "^4.4.0"
},
"dependencies": {
"@messageformat/runtime": "^3.0.0"
},
"type": "module"
}