-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
77 lines (77 loc) · 2.07 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
{
"name": "task-tracker",
"version": "0.1.0",
"private": true,
"description": "Task Tracker Application",
"author": {
"name": "Jesse",
"email": "[email protected]"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"sitemap": "next-sitemap",
"start": "next start -p 8000",
"lint": "next lint",
"format": "prettier --write \"./**/*.{js,ts,tsx,json,css}\"",
"unlighthouse-test": "npx unlighthouse --site https://taskmasterapp.com --desktop --no-cache"
},
"dependencies": {
"@fvilers/disable-react-devtools": "^1.3.0",
"@next/env": "^13.4.10",
"@react-oauth/google": "^0.11.1",
"@types/node": "^20.4.1",
"@types/react": "^18.2.34",
"@types/react-dom": "^18.2.14",
"@upstash/ratelimit": "^0.4.3",
"@upstash/redis": "^1.22.0",
"@vercel/analytics": "^1.0.1",
"apicache": "^1.6.3",
"bcrypt": "^5.1.0",
"cookie": "^0.5.0",
"critters": "^0.0.7",
"crypto-js": "^4.2.0",
"google-auth-library": "^9.0.0",
"googleapis": "^126.0.0",
"idb": "^7.1.1",
"jose": "^4.14.4",
"js-cookie": "^3.0.5",
"jsonwebtoken": "^9.0.1",
"jsrsasign": "^10.8.6",
"jsrsasign-util": "^1.0.5",
"jwt-decode": "^3.1.2",
"localforage": "^1.10.0",
"lodash": "^4.17.21",
"moment-timezone": "^0.5.43",
"next": "^14.0.1",
"next-sitemap": "^4.1.8",
"nodemailer": "^6.9.3",
"react": "^18.2.0",
"react-datepicker": "^4.16.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.2.0",
"react-loading-skeleton": "^3.3.1",
"react-toastify": "^9.1.3",
"react-wrap-balancer": "^1.0.0",
"sharp": "^0.32.3",
"typescript": "5.1.6",
"uuid": "^9.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/moment-timezone": "^0.5.30",
"@types/react-datepicker": "^4.15.0",
"@types/uuid": "^9.0.2",
"dotenv": "^16.3.1",
"encoding": "^0.1.13",
"eslint": "8.46.0",
"eslint-config-next": "^14.0.1",
"prettier": "3.0.0"
},
"overrides": {
"next-intl": {
"next": "^14.0.0"
}
}
}