-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.74 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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"prepare": "husky install",
"prettier": "prettier --write \"**/*.ts\" \"**/*.tsx\"",
"test:e2e": "playwright test",
"test:unit": "jest"
},
"dependencies": {
"@glidejs/glide": "^3.6.0",
"@next/font": "^14.0.1",
"@supabase/auth-helpers-nextjs": "^0.8.7",
"@supabase/ssr": "latest",
"@supabase/supabase-js": "latest",
"@types/glidejs": "^1.0.33",
"autoprefixer": "10.4.15",
"geist": "^1.0.0",
"html-entities": "^2.4.0",
"next": "latest",
"postcss": "8.4.29",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.11.0",
"react-router-dom": "^6.18.0",
"tailwindcss": "3.3.3",
"typescript": "5.1.3"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.0.1",
"@playwright/test": "^1.39.0",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.0.0",
"@types/glidejs__glide": "^3.6.3",
"@types/jest": "^29.5.8",
"@types/node": "20.3.1",
"@types/react": "18.2.8",
"@types/react-dom": "18.2.5",
"encoding": "^0.1.13",
"eslint": "^8.53.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-jsx-a11y": "^6.8.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.1.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"playwright": "^1.39.0",
"prettier": "^3.0.3"
}
}