-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.13 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
{
"private": true,
"type": "module",
"scripts": {
"build": "tsc && astro build && copyfiles -u 1 src/meta.json dist",
"prepare": "npm run setup:init",
"dev": "concurrently --raw \"npm:dev:*\"",
"dev:astro": "astro dev --host",
"dev:css": "chokidar \"src/styles/**/*.css\" --command \"touch tailwind.config.cjs\" --debounce 0 --silent",
"fix": "npm run fix:prettier && npm run fix:eslint",
"fix:eslint": "npm run lint:eslint -- --fix",
"fix:prettier": "npm run lint:prettier -- --write",
"lint": "concurrently --raw \"npm:lint:*\"",
"lint:eslint": "eslint . --max-warnings 0",
"lint:prettier": "prettier . --check",
"preview": "astro preview",
"setup:init": "tsx ./scripts/meta.ts new",
"update:meta": "tsx ./scripts/meta.ts update"
},
"dependencies": {
"@astrojs/check": "0.8.3",
"@astrojs/mdx": "3.1.3",
"@astrojs/react": "3.6.0",
"@astrojs/sitemap": "3.1.6",
"@astrojs/tailwind": "5.1.0",
"@tailwindcss/container-queries": "0.1.1",
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@types/alpinejs": "3.13.10",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"alpinejs": "3.14.1",
"astro": "4.12.2",
"astro-icon": "1.1.0",
"chokidar-cli": "3.0.0",
"concurrently": "8.2.2",
"eslint": "8.57.0",
"eslint-plugin-astro": "1.1.1",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-tailwindcss": "3.15.1",
"leva": "0.9.35",
"postcss-fluid-sizing-function": "0.0.2",
"prettier": "3.2.5",
"prettier-plugin-astro": "0.13.0",
"prettier-plugin-css-order": "2.1.2",
"prettier-plugin-tailwindcss": "0.6.5",
"react": "18.3.1",
"react-device-detect": "2.2.3",
"react-dom": "18.3.1",
"rollup-plugin-visualizer": "5.12.0",
"tiny-invariant": "1.3.3",
"vitest": "1.5.3"
},
"packageManager": "[email protected]",
"engines": {
"node": "20"
},
"devDependencies": {
"@eslint/js": "9.7.0",
"@types/inquirer": "9.0.7",
"commander": "12.0.0",
"copyfiles": "2.4.1",
"inquirer": "9.3.2",
"postcss-preset-env": "9.5.11",
"tsx": "4.7.2",
"typescript-eslint": "7.17.0"
}
}