-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.19 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
{
"version": "2.1.0",
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"ts:check": "tsc --noEmit",
"test:e2e": "playwright test",
"test:unit": "vitest --ui"
},
"dependencies": {
"@radix-ui/react-hover-card": "^1.0.5",
"@tanstack/react-query": "^5.59.13",
"clsx": "^2.1.1",
"next": "14.2.15",
"prismjs": "^1.29.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-icons": "^5.3.0",
"sharp": "^0.33.5",
"sonner": "^1.5.0",
"zustand": "^4.3.7"
},
"devDependencies": {
"@bluzzi/eslint-config": "^1.2.1",
"@playwright/test": "^1.32.2",
"@types/node": "22.7.5",
"@types/prismjs": "^1.26.0",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.1",
"@vitest/ui": "^2.1.2",
"autoprefixer": "^10.4.14",
"dotenv": "^16.0.3",
"eslint": "8.37.0",
"eslint-config-next": "14.2.15",
"jsdom": "^25.0.1",
"postcss": "^8.4.21",
"tailwindcss": "^3.3.1",
"typescript": "5.6.3",
"vitest": "^2.1.2"
},
"eslintConfig": {
"extends": [
"@bluzzi",
"next/core-web-vitals"
]
}
}