-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.66 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.66 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
{
"name": "reactdevske",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "playwright test",
"prettier:format": "prettier --write --ignore-path .gitignore .",
"prettier:check": "prettier --check --ignore-path .gitignore .",
"typecheck": "tsc --build",
"validate": "concurrently --kill-others-on-fail -g -p \"[{name}]\" -n \"prettier,lint,typecheck,build\" \"npm:prettier:check -s\" \"npm:lint -s\" \"npm:typecheck -s\" \"npm:build -s\""
},
"pre-commit": [
"precommit-msg",
"validate"
],
"dependencies": {
"@headlessui/react": "^2.2.9",
"@radix-ui/react-slot": "^1.2.4",
"@types/react-google-recaptcha": "^2.1.5",
"axios": "^1.7.7",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.564.0",
"next": "16.1.6",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-google-recaptcha": "^2.1.0",
"react-icons": "^5.3.0",
"tailwind-merge": "^3.5.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@formspree/react": "^3.0.0",
"@playwright/test": "1.57.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/postcss": "^4.1.17",
"@types/node": "24.10.1",
"@types/react": "19.2.7",
"@typescript-eslint/eslint-plugin": "^8.48.0",
"autoprefixer": "10.4.22",
"concurrently": "^9.2.1",
"eslint": "9.39.2",
"eslint-config-next": "16.1.6",
"eslint-config-prettier": "^10.1.8",
"postcss": "8.5.6",
"pre-commit": "^1.2.2",
"prettier": "^3.7.1",
"tailwindcss": "4.2.0",
"typescript": "^5.9.3"
}
}