-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.84 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.84 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
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
{
"name": "my-aws-docs",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"format": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"precommit": "lint-staged",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:terms": "node scripts/test-terms.js",
"test:terms:unit": "node scripts/test-terms.js unit",
"test:terms:integration": "node scripts/test-terms.js integration",
"test:terms:e2e": "node scripts/test-terms.js e2e",
"test:terms:accessibility": "node scripts/test-terms.js accessibility",
"test:terms:cross-browser": "node scripts/test-terms.js crossBrowser",
"test:terms:edge-cases": "node scripts/test-terms.js edgeCases",
"test:terms:error-handling": "node scripts/test-terms.js errorHandling",
"test:terms:all": "node scripts/test-terms.js all",
"test:terms:watch": "node scripts/test-terms.js unit --watch",
"test:terms:coverage": "node scripts/test-terms.js all --coverage",
"prepare": "husky install",
"clean": "rimraf dist node_modules",
"start": "npm run dev"
},
"dependencies": {
"@astrojs/markdown-remark": "^6.3.10",
"@astrojs/mdx": "^4.3.13",
"@astrojs/react": "^4.4.2",
"@astrojs/sitemap": "^3.7.2",
"@radix-ui/react-checkbox": "^1.1.3",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-progress": "^1.1.1",
"@radix-ui/react-scroll-area": "^1.2.9",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-separator": "^1.1.2",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-toast": "^1.2.4",
"@radix-ui/react-tooltip": "^1.2.8",
"astro": "^5.18.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.473.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"remark-wiki-link": "^2.0.1",
"sharp": "^0.33.5",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@astrojs/tailwind": "^6.0.2",
"@astrojs/vercel": "^9.0.4",
"@shadcn/ui": "^0.0.4",
"@testing-library/jest-dom": "^6.6.4",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.13.0",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@typescript-eslint/parser": "^8.22.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.20.1",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-astro": "^1.3.1",
"husky": "^8.0.0",
"jest-axe": "^10.0.0",
"jsdom": "^26.0.0",
"lint-staged": "^13.0.0",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1",
"rimraf": "^5.0.0",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3",
"update-browserslist-db": "^1.2.3",
"vitest": "^3.0.6"
}
}