-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.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
{
"name": "pottercast",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"cypress": "npx cypress open",
"test": "jest --watch",
"test:ci": "jest --ci"
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"autoprefixer": "10.4.20",
"gsap": "^3.12.5",
"next": "14.2.10",
"postcss": "8.4.45",
"react": "18.3.1",
"react-dom": "18.2.0",
"sharp": "^0.33.4",
"tailwind-scrollbar": "^3.1.0",
"tailwindcss": "3.4.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "16.0.1",
"@testing-library/user-event": "14.5.2",
"@types/jest": "^29.5.14",
"@types/node": "20.11.26",
"@types/react": "18.3.5",
"@types/react-dom": "18.2.21",
"cypress": "^13.6.6",
"eslint": "8.57.0",
"eslint-config-next": "14.2.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "29.7.0",
"msw": "^2.2.3",
"ts-jest": "^29.1.2",
"typescript": "5.4.5"
}
}