-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 2.27 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
52
53
54
55
56
57
58
59
60
{
"$schema": "https://json.schemastore.org/package",
"name": "sveltekit-starter",
"version": "0.2.7",
"description": "Opinionated starter template for SvelteKit + Vite + TypeScript + ESLint + SCSS + TailwindCSS + Stylelint",
"author": "Patrick Rupp",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "ENV=dev vite dev --config ./conf/vite.config.ts",
"build": "ENV=prod vite build --config ./conf/vite.config.ts",
"preview": "ENV=prod vite preview --config ./conf/vite.config.ts",
"check": "bun --bun tsc && bun --bun svelte-kit sync && svelte-check",
"lint": "bun --bun lint:js && bun --bun lint:css",
"lint:css": "bun --bun stylelint **/*.{css,scss,html,svelte} --config ./conf/stylelint.config.mjs --ignore-path .gitignore --fix --cache --max-warnings 0",
"lint:js": "bun --bun eslint . --config ./conf/eslint.config.cjs --ignore-path .gitignore --fix --cache --max-warnings 0",
"postinstall": "bun --bun patch-package"
},
"devDependencies": {
"@dword-design/eslint-plugin-import-alias": "5.0.0",
"@sveltejs/kit": "2.7.2",
"@sveltejs/vite-plugin-svelte": "3.1.2",
"@total-typescript/ts-reset": "0.6.1",
"@types/bun": "1.1.11",
"@types/eslint": "8.56.12",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"autoprefixer": "10.4.20",
"eslint": "8.57.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-svelte": "2.45.1",
"eslint-plugin-unicorn": "56.0.0",
"patch-package": "8.0.0",
"postcss": "8.4.47",
"postcss-html": "1.7.0",
"postcss-load-config": "6.0.1",
"rollup-plugin-license": "3.5.3",
"sass": "1.80.3",
"stylelint": "16.10.0",
"stylelint-config-recommended-scss": "14.1.0",
"svelte": "4.2.19",
"svelte-adapter-bun": "0.5.2",
"svelte-check": "4.0.5",
"svelte-eslint-parser": "0.42.0",
"tailwindcss": "3.4.14",
"type-fest": "4.26.1",
"typescript": "5.5.4",
"vite": "5.4.9",
"vite-plugin-checker": "0.8.0",
"vite-plugin-eslint2": "4.4.2",
"vite-plugin-stylelint": "5.3.1"
},
"peerDependencies": {
"@sveltejs/kit": "*",
"svelte": "*"
}
}