-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.31 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.31 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
{
"name": "vim-kr-renewal",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"prepare": "husky install"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,astro,json}": [
"eslint --fix",
"npx prettier --write"
]
},
"dependencies": {
"@astrojs/check": "^0.3.4",
"@astrojs/react": "^3.0.9",
"@astrojs/starlight": "^0.12.0",
"@astrojs/tailwind": "^5.1.0",
"@astrojs/ts-plugin": "^1.3.1",
"@fortawesome/fontawesome-free": "^6.5.1",
"@nanostores/react": "^0.7.1",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"astro": "^4.1.1",
"nanostores": "^0.9.5",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"sharp": "^0.32.5",
"tailwindcss": "^3.0.24"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-astro": "^0.31.0",
"eslint-plugin-prettier": "^5.1.2",
"husky": "^8.0.0",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"prettier-plugin-astro": "^0.12.3",
"prettier-plugin-tailwindcss": "^0.5.11",
"typescript": "^5.3.3"
}
}