forked from ivanhofer/typesafe-i18n-demo-sveltekit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.53 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
{
"name": "typesafe-i18n-demo-sveltekit",
"description": "Showcase of typesafe-i18n working in a SvelteKit project",
"version": "1.0.0",
"author": "ivanhofer",
"license": "MIT",
"homepage": "https://github.com/ivanhofer/typesafe-i18n-demo-sveltekit",
"repository": {
"type": "git",
"url": "https://github.com/ivanhofer/typesafe-i18n-demo-sveltekit"
},
"scripts": {
"dev": "npm-run-all --parallel sveltekit typesafe-i18n",
"sveltekit": "vite dev",
"build": "vite build",
"preview": "vite 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=. .",
"typesafe-i18n": "typesafe-i18n"
},
"type": "module",
"engines": {
"node": ">=16.9"
},
"devDependencies": {
"@sveltejs/adapter-vercel": "1.0.0-next.84",
"@sveltejs/kit": "1.0.0-next.505",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte3": "^4.0.0",
"node-sass": "^8.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.0",
"prettier-plugin-svelte": "^2.8.1",
"sass": "^1.56.1",
"svelte": "^3.53.1",
"svelte-check": "^2.9.2",
"svelte-preprocess": "^4.10.7",
"tslib": "^2.4.1",
"typescript": "^4.9.3",
"vite": "^3.2.4"
},
"dependencies": {
"typesafe-i18n": "^5.17.0"
}
}