-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.32 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.32 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
{
"name": "trivia-app",
"version": "0.1.0",
"private": true,
"homepage": "https://andre-lmarinho.github.io/Trivia",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"predeploy": "npm run build",
"typecheck": "tsc --noEmit",
"deploy": "echo 'Simulating GitHub Pages deployment'",
"format": "prettier --write .",
"lint": "eslint . --ext .ts,.tsx"
},
"dependencies": {
"@headlessui/react": "^2.2.4",
"framer-motion": "^12.23.0",
"lucide-react": "^0.522.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.5.0"
},
"devDependencies": {
"@types/node": "^24.5.1",
"@types/react": "^18.2.8",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^8.35.1",
"@typescript-eslint/parser": "^8.35.1",
"@vitejs/plugin-react": "^4.0.0",
"autoprefixer": "^10.4.0",
"eslint": "^9.30.1",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"gh-pages": "^6.3.0",
"jsdom": "^26.1.0",
"postcss": "^8.4.0",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "^3.4.0",
"typescript": "^5.1.3",
"vite": "^7.0.6",
"vitest": "^3.2.4"
}
}