-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.77 KB
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
{
"name": "idolbust",
"type": "module",
"version": "0.1.0",
"description": "Simple website software for research projects that want to understand their user needs",
"license": "AGPL-3.0-or-later",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint src --ext .ts,.tsx,.astro",
"typecheck": "astro check",
"test:unit": "vitest run --config vitest.unit.config.ts",
"format": "prettier --write \"src/**/*.{ts,tsx,astro,css,md,mdx}\"",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build"
},
"dependencies": {
"@astrojs/mdx": "^4.0.2",
"@astrojs/react": "^4.4.2",
"@astrojs/rss": "^4.0.9",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/tailwind": "^5.1.4",
"astro": "^5.1.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tailwindcss": "^3.4.17"
},
"devDependencies": {
"@astrojs/check": "^0.9.6",
"@storybook/addon-a11y": "^10.2.15",
"@storybook/addon-docs": "^10.2.15",
"@storybook/addon-vitest": "^10.2.15",
"@storybook/builder-vite": "10.2.15",
"@storybook/react-vite": "10.2.15",
"@tailwindcss/typography": "^0.5.15",
"@types/node": "^22.10.5",
"@typescript-eslint/parser": "^8.56.0",
"@vitest/browser": "^4.0.18",
"@vitest/browser-playwright": "^4.0.18",
"autoprefixer": "^10.4.27",
"eslint": "^9.17.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-boundaries": "^5.4.0",
"playwright": "^1.58.2",
"postcss": "^8.5.8",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.9",
"storybook": "10.2.15",
"typescript": "^5.7.2",
"vitest": "^4.0.18"
}
}