-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.46 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
{
"name": "nextjs_template",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"e2e": "cypress open",
"e2e:headless": "cypress run",
"test": "jest --watch"
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@portabletext/react": "^1.0.6",
"@radix-ui/react-switch": "^0.1.5",
"@react-aria/button": "^3.4.4",
"@react-stately/toggle": "^3.2.7",
"@sanity/image-url": "^1.0.1",
"@supabase/supabase-js": "^1.35.3",
"antd": "^4.20.3",
"next": "12.0.10",
"next-sanity": "^0.5.2",
"phosphor-react": "^1.4.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-toastify": "^9.0.1",
"tailwindcss-radix": "^2.2.0",
"zustand": "^4.0.0-rc.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.2",
"@types/node": "17.0.16",
"@types/react": "17.0.39",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"autoprefixer": "^10.4.7",
"cypress": "^9.4.1",
"eslint": "8.8.0",
"eslint-config-next": "12.0.10",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-jest-dom": "^4.0.1",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"postcss": "^8.4.13",
"prettier": "^2.5.1",
"tailwindcss": "^3.0.24",
"typescript": "^4.5.5"
}
}