-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.48 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.48 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "swagger-explained",
"private": true,
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"lint": "concurrently -c \"#c596c7\",\"#676778\",\"#4b32c3\",\"#fafafa\" --kill-others-on-fail \"npm:lint:*\"",
"lint:prettier": "prettier --check .",
"lint:svelte-check": "svelte-check --fail-on-warnings",
"lint:eslint": "eslint --max-warnings=0",
"lint:stylelint": "stylelint --max-warnings=0 \"src/**/*.{css,svelte}\"",
"format": "eslint --fix && stylelint --fix \"src/**/*.{css,svelte}\" && prettier --write .",
"test": "concurrently -c \"#fcc72a\",\"#45ba4b\" --kill-others-on-fail \"npm:test:*\"",
"test:vitest": "vitest run",
"test:playwright": "playwright test",
"vitest:watch": "vitest watch",
"playwright:ui": "playwright test --ui",
"preinstall": "npx -y only-allow pnpm",
"prepare": "husky || true"
},
"lint-staged": {
"*.{ts,svelte}": [
"svelte-check --fail-on-warnings --diagnostic-sources \"js,svelte\""
],
"*.{ts,svelte,js,cjs,mjs}": [
"eslint --max-warnings 0 --no-ignore"
],
"*.{ts,js,svelte,css,scss,json,html}": [
"prettier --check"
]
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.58.2",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.55.0",
"@sveltejs/vite-plugin-svelte": "7.0.0",
"@tailwindcss/typography": "^0.5.19",
"@types/node": "^25.5.0",
"autoprefixer": "^10.4.27",
"concurrently": "^9.2.1",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-only-warn": "^1.2.1",
"eslint-plugin-svelte": "^3.15.2",
"globals": "^17.4.0",
"highlight.js": "^11.11.1",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"marked": "^17.0.4",
"marked-gfm-heading-id": "^4.1.3",
"marked-highlight": "^2.2.3",
"postcss": "^8.5.8",
"postcss-html": "^1.8.1",
"postcss-preset-env": "^11.2.0",
"prettier": "^3.8.1",
"prettier-plugin-svelte": "^3.5.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"stylelint": "^17.4.0",
"stylelint-config-clean-order": "^8.0.1",
"stylelint-config-standard": "^40.0.0",
"stylelint-prettier": "^5.0.3",
"svelte": "5.53.13",
"svelte-check": "^4.4.5",
"tailwindcss": "^4.2.1",
"typescript": "~5.9.3",
"typescript-eslint": "^8.57.1",
"vite": "^8.0.0",
"vitest": "^4.1.0",
"yaml": "^2.8.2"
}
}