-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.35 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
{
"name": "vite-svelte-docker-template",
"private": true,
"version": "0.0.0",
"type": "module",
"packageManager": "[email protected]",
"engines": {
"pnpm": "^9.0.0"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "pnpm run lint:base -- .",
"lint:base": "eslint --cache --cache-location='node_modules/.cache/eslint/'",
"lint:fix": "pnpm run lint:base -- --fix .",
"prettier:base": "prettier",
"prettier": "pnpm run prettier:base --write ."
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/svelte": "^5.2.1",
"@tsconfig/svelte": "^5.0.4",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"@vitest/coverage-istanbul": "^2.1.1",
"eslint": "^9.10.0",
"eslint-plugin-svelte": "^2.44.0",
"globals": "^15.9.0",
"jsdom": "^25.0.0",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.6",
"svelte": "^4.2.19",
"svelte-check": "^4.0.2",
"tslib": "^2.7.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.5.0",
"vite": "^5.4.5",
"vitest": "^2.1.1"
}
}