forked from kossiitkgp/YAKW
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 798 Bytes
/
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
{
"name": "koss-site-astro",
"type": "module",
"version": "1.0.0",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"prepare": "husky install"
},
"dependencies": {
"@astrojs/vercel": "^3.5.0",
"astro": "^2.6.0",
"sass": "^1.63.6",
"typoist": "^1.2.2"
},
"devDependencies": {
"@typescript-eslint/parser": "^5.60.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-astro": "^0.27.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"prettier-plugin-astro": "^0.10.0",
"typescript": "5.0.3"
},
"lint-staged": {
"*.{astro,js,ts}": [
"eslint --ext .js,.astro --fix"
]
}
}