-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.62 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
{
"name": "marvel-characters",
"version": "1.0.0",
"private": true,
"type": "module",
"packageManager": "pnpm@11.17.0",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"test": "vitest",
"test:ci": "vitest run",
"lint": "eslint .",
"typecheck": "astro check",
"prettify": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky"
},
"dependencies": {
"@astrojs/cloudflare": "14.1.7",
"@astrojs/react": "6.0.2",
"@tailwindcss/vite": "4.3.3",
"@tanstack/react-query": "5.101.4",
"astro": "7.1.6",
"lucide-react": "^1.28.0",
"motion": "^12.43.0",
"react": "19.2.8",
"react-dom": "19.2.8",
"tailwindcss": "4.3.3"
},
"devDependencies": {
"@astrojs/check": "0.9.10",
"@testing-library/jest-dom": "7.0.0",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/eslint-plugin-jsx-a11y": "6.10.1",
"@types/node": "24.13.3",
"@types/react": "19.2.18",
"@types/react-dom": "19.2.4",
"@vitejs/plugin-react": "6.0.5",
"eslint": "10.8.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-astro": "3.0.1",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react-hooks": "7.1.1",
"eslint-plugin-testing-library": "7.16.2",
"husky": "9.1.7",
"jsdom": "30.0.1",
"lint-staged": "17.3.0",
"prettier": "3.9.6",
"prettier-plugin-astro": "0.14.1",
"typescript": "6.0.3",
"typescript-eslint": "8.65.0",
"vitest": "4.1.10",
"wrangler": "^4.118.0"
}
}