-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.59 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.59 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
{
"name": "lgtm",
"type": "module",
"version": "1.0.0",
"packageManager": "pnpm@10.7.0",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"astro": "astro",
"dev": "astro dev",
"test": "vitest run",
"build": "astro build",
"test:watch": "vitest",
"preview": "astro preview",
"coverage": "vitest run --coverage",
"lint": "eslint src --ext .ts,.tsx,.astro",
"lint:fix": "eslint src --ext .ts,.tsx,.astro --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,astro,css,json}\" \"*.{mjs,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,astro,css,json}\" \"*.{mjs,json}\""
},
"dependencies": {
"@astrojs/react": "^5.0.2",
"@astrojs/vercel": "^10.0.4",
"@tailwindcss/vite": "^4.2.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"astro": "^6.1.3",
"canvas-confetti": "^1.9.4",
"lucide-react": "^1.7.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tailwindcss": "^4.2.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/canvas-confetti": "^1.9.0",
"@types/node": "^25.5.2",
"@vitejs/plugin-react": "^4.4.1",
"@vitest/coverage-v8": "3.2.4",
"eslint": "^10.2.0",
"eslint-plugin-astro": "^1.6.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"jsdom": "^26.1.0",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"typescript-eslint": "^8.58.0",
"vitest": "^3.1.1"
}
}