-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 2.2 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
{
"name": "@example/basics",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "npm run fetchRegions && astro dev",
"start": "npm run dev",
"build": "npm run fetchRegions && astro build",
"preview": "astro preview",
"astro": "astro",
"fetchRegions": "vite-node ./data/fetchRegions.ts && prettier ./data/regions.json --write",
"type-check": "astro check && tsc --skipLibCheck --noEmit",
"lint": "eslint",
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js|tsx|astro|mdx)\" --write",
"check": "npm run type-check && npm run format && npm run lint",
"updatePackages:major": "npx taze major --write && npm install",
"updatePackages:minor": "npx taze minor --write && npm install",
"prepare": "husky install"
},
"dependencies": {
"@alpinejs/collapse": "^3.14.1",
"@astrojs/alpinejs": "^0.4.0",
"@astrojs/check": "^0.9.1",
"@astrojs/mdx": "^3.1.3",
"@astrojs/react": "^3.6.1",
"@astrojs/rss": "^4.0.7",
"@astrojs/sitemap": "^3.1.6",
"@astrojs/tailwind": "^5.1.0",
"@headlessui/react": "^2.1.2",
"@heroicons/react": "^2.1.5",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/typography": "^0.5.13",
"@tanstack/react-query": "^5.51.21",
"@turf/turf": "^7.0.0",
"@types/alpinejs": "^3.13.10",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"alpinejs": "^3.14.1",
"astro": "^4.13.1",
"axios": "^1.7.3",
"classnames": "^2.5.1",
"clsx": "^2.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"remark-toc": "^9.0.0",
"tailwindcss": "^3.4.7",
"typescript": "^5.5.4",
"vite": "^5.3.5",
"vite-node": "^2.0.5"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.0.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-astro": "^1.2.3",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^9.1.4",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-organize-imports": "^4.0.0",
"prettier-plugin-tailwindcss": "^0.6.5"
}
}