-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.27 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
73
{
"name": "clean-code-kevin",
"version": "0.1.0",
"engines": {
"node": "22"
},
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "pnpm test && next build && pnpm check_links",
"build:local": " next build && next start",
"check_links": "linkinator .next/server/app/index.html --timeout 2000 --retry-errors --skip '(\\.(svg|css|js|woff2|ico))|_next/image|www\\.ricardo\\.ch|www\\.linkedin\\.com|kentcdodds'",
"start": "next start",
"lint": "next lint",
"vitest": "vitest",
"test": "NODE_ENV=test pnpm vitest run && pnpm lint && pnpm knip"
},
"dependencies": {
"@radix-ui/react-dialog": "1.0.4",
"@radix-ui/react-slot": "^1.1.1",
"autoprefixer": "^10.4.20",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^12.0.6",
"lucide-react": "^0.474.0",
"next": "15.1.6",
"postcss": "^8.5.1",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-slick": "^0.30.3",
"sharp": "^0.33.5",
"slick-carousel": "^1.8.1",
"tailwind-merge": "^1.14.0",
"tailwindcss": "^3.3.3",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.7.3"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@total-typescript/ts-reset": "^0.6.1",
"@types/node": "^22.12.0",
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3",
"@types/react-slick": "^0.23.13",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.52.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-next": "^14.0.1",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^6.0.1",
"eslint-plugin-vitest": "^0.3.8",
"jsdom": "^26.0.0",
"knip": "^2.40.2",
"linkinator": "^6.1.2",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.4",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^0.34.6"
},
"pnpm": {
"overrides": {
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3"
}
}
}