forked from Brainshaker95/sveltekit-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.15 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.15 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
{
"name": "sveltekit-starter",
"version": "0.2.1",
"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.mjs",
"build": "ENV=prod vite build --config ./conf/vite.config.mjs",
"preview": "ENV=prod vite preview --config ./conf/vite.config.mjs",
"check": "bun --bun tsc && bun --bun svelte-kit sync && bun --bun svelte-check",
"lint": "bun --bun lint:js && bun --bun lint:css",
"lint:css": "bun --bun stylelint ./src/**/*.{css,scss,html,svelte} --config ./conf/stylelint.config.cjs --fix",
"lint:js": "bun --bun eslint . --config ./conf/eslint.config.cjs --ignore-path .gitignore --fix",
"postinstall": "bun --bun patch-package"
},
"devDependencies": {
"@dword-design/eslint-plugin-import-alias": "4.0.9",
"@sveltejs/kit": "2.3.2",
"@sveltejs/vite-plugin-svelte": "3.0.1",
"@total-typescript/ts-reset": "0.5.1",
"@types/eslint": "8.56.2",
"@types/node": "20.11.0",
"@typescript-eslint/eslint-plugin": "6.18.1",
"@typescript-eslint/parser": "6.18.1",
"autoprefixer": "10.4.16",
"bun-types": "1.0.22",
"eslint": "8.56.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-svelte": "2.35.1",
"patch-package": "8.0.0",
"postcss": "8.4.33",
"postcss-html": "1.6.0",
"postcss-load-config": "5.0.2",
"rollup-plugin-license": "3.2.0",
"sass": "1.69.7",
"stylelint": "16.1.0",
"stylelint-config-recommended-scss": "14.0.0",
"svelte": "4.2.8",
"svelte-adapter-bun": "0.5.1",
"svelte-check": "3.6.3",
"svelte-eslint-parser": "0.33.1",
"tailwindcss": "3.4.1",
"type-fest": "4.9.0",
"typescript": "5.3.3",
"vite": "5.0.11",
"vite-plugin-checker": "0.6.2",
"vite-plugin-eslint2": "4.3.1",
"vite-plugin-stylelint": "5.3.1"
},
"peerDependencies": {
"@sveltejs/kit": "*",
"svelte": "*"
}
}