-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.79 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
{
"name": "coinsynch",
"type": "module",
"version": "1.0.0",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && tsc --noEmit && astro build",
"preview": "astro preview",
"astro": "astro",
"update-deps": "node ./src/config/update-deps.mjs",
"generate": "plop --plopfile generators/plopfile.js",
"type-check": "tsc --project tsconfig.json --pretty --noEmit",
"lint": "eslint src --ext .ts,.tsx,.astro",
"lint:fix": "yarn lint --fix"
},
"dependencies": {
"@astrojs/netlify": "^2.5.1",
"@astrojs/react": "2.2.1",
"@astrojs/tailwind": "^4.0.0",
"@astrojs/ts-plugin": "1.1.0",
"@hookform/resolvers": "^3.1.1",
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-popover": "^1.0.6",
"@types/react": "18.2.15",
"@types/react-dom": "18.2.7",
"@types/styled-components": "^5.1.26",
"astro": "2.9.1",
"embla-carousel": "^8.0.0-rc11",
"husky": "^8.0.3",
"postcss": "8.4.27",
"postcss-preset-env": "9.0.0",
"prettier": "3.0.0",
"prettier-plugin-astro": "0.11.0",
"prettier-plugin-tailwindcss": "^0.4.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.45.2",
"react-router-dom": "6.14.2",
"styled-components": "^6.0.5",
"tailwindcss": "^3.0.24",
"vite-plugin-svgr": "^3.2.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-astro": "^0.27.2",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"plop": "^3.1.2",
"tailwind-merge": "^1.14.0"
}
}