-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.87 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "designo",
"type": "module",
"version": "1.0.0",
"description": "Award-winning custom designs and digital branding solutions.",
"repository": {
"type": "git",
"url": "git+https://github.com/jakubjirous/designo.git"
},
"keywords": [
"astro",
"react",
"typescript",
"tailwind-css"
],
"author": "Jakub Jirous <[email protected]>",
"license": "MIT",
"scripts": {
"prepare": "husky install",
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"clean": "git clean --interactive -dx --exclude .env.local --exclude \".env.*.local\" --exclude node_modules/ --exclude .husky/",
"lint": "npm-run-all --parallel lint:astro lint:js+ts lint:format lint:types",
"lint:astro": "astro check",
"lint:js+ts": "eslint --ext .astro,.js,.jsx,.cjs,.ts,.tsx,.cts --ignore-path .gitignore .",
"lint:format": "prettier \"**/*\" --check --ignore-unknown",
"lint:types": "tsc --noEmit",
"lint:fix": "npm-run-all --serial lint:fix:*",
"lint:fix:js+ts": "pnpm run lint:js+ts --fix",
"lint:fix:format": "prettier \"**/*\" --write --ignore-unknown"
},
"dependencies": {
"@astrojs/mdx": "0.19.7",
"@astrojs/prefetch": "0.3.0",
"@astrojs/react": "^2.2.1",
"@astrojs/sitemap": "^2.0.1",
"@astrojs/tailwind": "4.0.0",
"@astrojs/vercel": "^3.8.0",
"@tailwindcss/container-queries": "^0.1.1",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"astro": "2.10.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.45.4",
"sharp": "^0.32.4",
"tailwindcss": "3.3.3",
"zod": "link:@hookform/resolvers/zod"
},
"devDependencies": {
"@hookform/resolvers": "^3.2.0",
"@tailwindcss/typography": "^0.5.9",
"@types/mapbox-gl": "^2.7.13",
"@types/node": "18.16.19",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "8.45.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-prettier": "8.8.0",
"eslint-import-resolver-typescript": "3.5.5",
"eslint-plugin-astro": "0.27.2",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-simple-import-sort": "10.0.0",
"eslint-plugin-tailwindcss": "3.13.0",
"husky": "8.0.3",
"mapbox-gl": "^2.15.0",
"nano-staged": "0.8.0",
"npm-run-all": "4.1.5",
"prettier": "2.8.8",
"prettier-plugin-astro": "0.10.0",
"prettier-plugin-tailwindcss": "0.4.1",
"typescript": "5.1.6",
"vite": "^4.4.9"
},
"packageManager": "[email protected]",
"nano-staged": {
"*": "prettier --write --ignore-unknown",
"*.{astro,js,jsx,cjs,ts,tsx,cts}": "eslint --fix"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"rollup"
]
}
}
}