This repository has been archived by the owner on Dec 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.34 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
74
75
76
77
78
79
80
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "node sw-postbuild.js",
"start": "next start -p $PORT",
"lint": "next lint",
"prepare": "husky install",
"pre-commit": "npm run lint --fix",
"test:watch": "jest --watch",
"test": "jest"
},
"dependencies": {
"@headlessui/react": "^1.7.17",
"@headlessui/tailwindcss": "^0.2.0",
"@next-auth/mongodb-adapter": "^1.1.3",
"@next/bundle-analyzer": "^13.4.19",
"bson-objectid": "^2.0.4",
"class-variance-authority": "^0.7.0",
"date-fns": "^2.30.0",
"fast-deep-equal": "^3.1.3",
"idb": "^7.1.1",
"jotai": "^2.3.1",
"mongoose": "^7.5.0",
"next": "^13.4.12",
"next-auth": "^4.23.1",
"next-router-mock": "^0.9.9",
"nodemailer": "^6.9.4",
"react": "^18.2.0",
"react-device-detect": "^2.2.3",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.11",
"react-popper-tooltip": "^4.4.2",
"recoil": "^0.7.7",
"server-only": "^0.0.1",
"sharp": "^0.32.5",
"slate": "^0.94.0",
"slate-history": "^0.93.0",
"slate-hyperscript": "^0.77.0",
"slate-react": "^0.92.0",
"validator": "^13.11.0",
"zod": "^3.22.2",
"zod-fetch": "^0.1.1"
},
"devDependencies": {
"@swc/core": "^1.3.78",
"@swc/jest": "^0.2.29",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.4",
"@tailwindcss/typography": "^0.5.9",
"@testing-library/jest-dom": "^6.0.1",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.3",
"@types/node": "^20.5.1",
"@types/react": "^18.2.20",
"@types/validator": "^13.11.1",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"autoprefixer": "^10.4.15",
"eslint": "^8.47.0",
"eslint-config-next": "^13.4.19",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^6.0.0",
"fake-indexeddb": "^4.0.2",
"husky": "^8.0.3",
"jest": "^29.6.3",
"jest-environment-jsdom": "^29.6.2",
"lint-staged": "^14.0.0",
"postcss": "^8.4.28",
"prettier": "^3.0.2",
"prettier-plugin-tailwindcss": "^0.5.3",
"tailwindcss": "^3.3.3",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"whatwg-fetch": "^3.6.17"
}
}