-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.02 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
{
"name": "astro-svelte-site",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build && pagefind --site dist",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint --fix 'src/**/*.{js,astro,svelte}'",
"format": "prettier --write 'src/**/*.{js,astro,svelte}'",
"lint-staged": "lint-staged",
"prepare": "husky"
},
"dependencies": {
"@astrojs/svelte": "^5.4.0",
"astro": "^4.6.3",
"pagefind": "^1.1.0",
"svelte": "^4.2.15"
},
"devDependencies": {
"@typescript-eslint/parser": "^6.19.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-astro": "^0.34.0",
"eslint-plugin-svelte": "^2.38.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.13.0",
"prettier-plugin-svelte": "^3.2.3"
},
"lint-staged": {
"src/**/*.{js,astro,svelte}": [
"eslint --fix",
"prettier --write"
]
}
}