-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 1.45 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
{
"name": "megzari.com",
"version": "0.0.1",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"start": "svelte-kit start",
"lint": "eslint ./src/**/*.svelte",
"lint:fix": "eslint --fix ./src/**/*.svelte"
},
"devDependencies": {
"@sveltejs/kit": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.10.0",
"autoprefixer": "^10.4.16",
"cssnano": "^6.0.1",
"eslint": "^8.53.0",
"eslint-plugin-svelte": "^2.35.1",
"lint-staged": "^15.2.0",
"mdsvex": "^0.11.0",
"postcss": "^8.4.32",
"postcss-import": "^15.1.0",
"postcss-load-config": "^4.0.2",
"postcss-preset-env": "^9.3.0",
"prettier": "^3.1.0",
"prettier-plugin-svelte": "^3.1.2",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"remark-abbr": "^1.4.1",
"remark-github": "^12.0.0",
"sharp": "^0.33.0",
"svelte": "^4.2.8",
"svelte-adapter-bun": "^0.5.1",
"svelte-preprocess": "^5.1.1",
"tailwindcss": "^3.3.5",
"tslib": "^2.6.2",
"typescript": "^5.3.2",
"vite": "^5.0.0",
"vite-plugin-image-optimizer": "^1.1.7",
"vite-plugin-iso-import": "^1.0.0",
"vite-plugin-node-stdlib-browser": "^0.2.1"
},
"type": "module",
"engines": {
"node": ">= 12.17.0"
},
"lint-staged": {
"./src/**/*.{ts,svelte}": [
"npm run lint:fix"
]
},
"typings": "global.d.ts"
}