-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.59 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "nextjs-repository",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "eslint --ext .js,.ts,.tsx --quiet .",
"lint:fix": "eslint --ext .js,.ts,.tsx --fix .",
"format": "prettier --ignore-path .gitignore --write \"**/*.{js,ts,tsx,json,md}\"",
"format:check": "prettier --ignore-path .gitignore --check \"**/*.{js,ts,tsx,json,md}\"",
"check:code-style": "npm run lint && npm run format:check",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"test:e2e:setup": "playwright install && playwright install-deps",
"prepare": "husky install"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,md}": [
"eslint --ext .js,.jsx,.ts,.tsx --fix",
"prettier --write"
]
},
"dependencies": {
"@motionone/dom": "^10.18.0",
"@next/third-parties": "^16.0.7",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-slot": "^1.2.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^12.23.25",
"lucide-react": "^0.555.0",
"motion": "^12.34.0",
"next": "16.1.5",
"next-intl": "^4.5.8",
"next-themes": "^0.4.6",
"react": "19.2.1",
"react-dom": "19.2.1",
"react-icons": "^5.5.0",
"sharp": "^0.34.5",
"tailwind-merge": "^3.4.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.1",
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
"@next/eslint-plugin-next": "^16.0.7",
"@playwright/test": "^1.57.0",
"@tailwindcss/postcss": "^4.1.17",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/node": "^24.10.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.48.1",
"@typescript-eslint/parser": "^8.48.1",
"@vitejs/plugin-react": "^5.1.1",
"eslint": "^9.39.1",
"eslint-config-next": "16.0.7",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-next": "^0.0.0",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.5.0",
"husky": "^9.1.7",
"jsdom": "^27.2.0",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^4.1.17",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.1",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^4.0.15"
},
"packageManager": "pnpm@9.15.4"
}