-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.55 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
55
56
57
58
59
60
{
"name": "mixologist",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint --fix",
"pretty": "prettier --write .",
"prepare": "husky install"
},
"dependencies": {
"@astrojs/react": "^3.0.3",
"@astrojs/tailwind": "^5.0.2",
"@fontsource-variable/inter": "^5.0.15",
"@fontsource-variable/inter-tight": "^5.0.18",
"@types/react": "^18.2.31",
"@types/react-dom": "^18.2.13",
"@types/react-window": "^1.8.8",
"astro": "^3.3.0",
"nanostores": "^0.9.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-virtualized-auto-sizer": "^1.0.20",
"react-window": "^1.8.9",
"tailwindcss": "^3.3.3",
"vite-plugin-pwa": "^0.17.4"
},
"devDependencies": {
"@astrojs/sitemap": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"astro-compress": "^2.1.5",
"astro-seo": "^0.8.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.0",
"postcss-nesting": "^12.0.1",
"prettier": "^3.0.3",
"prettier-plugin-astro": "^0.12.1",
"vite-plugin-svgr": "^4.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"npm run lint",
"prettier --write"
]
}
}