-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.06 KB
/
package.json
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
{
"name": "meta-careers-form-challenge",
"version": "0.1.0",
"private": true,
"author": {
"name": "Quang Pham",
"email": "[email protected]"
},
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint --fix && prettier --write",
"format": "prettier --write \"./**/*.ts{,x}\"",
"format:md": "prettier --write \"**/*.md\"",
"test": "vitest",
"test:coverage": "vitest --coverage",
"e2e": "playwright test",
"e2e:ui": "playwright test --ui",
"e2e:codegen": "playwright codegen",
"lint-staged": "lint-staged",
"prepare": "husky",
"pre-commit": ".husky/pre-commit"
},
"dependencies": {
"@hookform/resolvers": "^3.9.0",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-toast": "^1.2.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"framer-motion": "^11.11.8",
"libphonenumber-js": "^1.11.11",
"lucide-react": "^0.451.0",
"next": "15.1.2",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-hook-form": "^7.53.0",
"tailwind-merge": "^2.5.3",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@playwright/test": "^1.48.0",
"@tailwindcss/typography": "^0.5.15",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@types/eslint": "^9.6.1",
"@types/jest": "^29.5.13",
"@types/node": "^20",
"@types/react": "19.0.2",
"@types/react-dom": "19.0.2",
"@vitejs/plugin-react": "^4.3.2",
"@vitest/ui": "2.1.2",
"dotenv": "^16.4.5",
"eslint": "^8",
"eslint-config-next": "15.1.2",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.6",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.10",
"postcss": "^8",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.1",
"typescript": "^5",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.2"
}
}