-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
90 lines (90 loc) · 2.69 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
81
82
83
84
85
86
87
88
89
90
{
"name": "ubc-tennis-circle-website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"email": "email dev --port 4000 --dir src/app/api/emails",
"prepare": "npm run compile",
"compile": "tsc",
"fix": "next lint",
"pretest": "npm run compile",
"posttest": "npm run lint",
"cf-type-gen": "dotenv -- bash -c 'cf-content-types-generator -s $NEXT_CONTENTFUL_SPACE_ID -t $NEXT_CONTENTFUL_CMA_TOKEN -X -o ./src/types/contentful' && npm run fix",
"gen-example-env": "sed 's/=.*/=/' .env > .env.example",
"ngrok": "ngrok http --domain=initially-cosmic-panther.ngrok-free.app 3000"
},
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/next-js": "^2.2.0",
"@chakra-ui/react": "^2.8.1",
"@contentful/node-apps-toolkit": "^3.2.1",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@hookform/resolvers": "^3.3.4",
"@lucia-auth/adapter-mongoose": "^3.0.1",
"@lucia-auth/oauth": "^3.5.2",
"@netlify/next": "^1.4.9",
"@netlify/plugin-nextjs": "^5.7.1",
"@react-email/components": "0.0.12",
"@react-email/render": "^0.0.7",
"@stripe/stripe-js": "^3.0.10",
"@tanstack/react-query": "^5.8.3",
"@uidotdev/usehooks": "^2.4.1",
"@uploadthing/react": "^6.2.3",
"@upstash/redis": "^1.29.0",
"axios": "^1.6.2",
"broadcast-channel": "^5.3.0",
"cf-content-types-generator": "^2.13.1",
"chakra-react-select": "^4.7.6",
"contentful": "^10.8.4",
"date-fns": "^3.3.1",
"dotenv-cli": "^7.3.0",
"encoding": "^0.1.13",
"framer-motion": "^10.16.4",
"fuse.js": "^7.0.0",
"ioredis": "^5.3.2",
"keyv": "^4.5.4",
"lucia": "^2.7.4",
"mergent": "^1.6.0",
"mongodb": "^6.2.0",
"mongoose": "^8.0.4",
"next": "^13.5.6",
"path": "^0.12.7",
"react": "^18",
"react-dom": "^18",
"react-dropzone": "^14.2.3",
"react-email": "^1.10.1",
"react-hook-form": "^7.49.3",
"react-icons": "^5.0.1",
"resend": "^2.0.0",
"stripe": "^14.21.0",
"uploadthing": "^6.4.0",
"winston": "^3.11.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@tanstack/eslint-plugin-query": "^5.6.0",
"@types/node": "20.8.2",
"@types/react": "^18",
"@types/react-dom": "^18",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8",
"eslint-config-next": "13.5.6",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.0",
"prettier": "^3.2.5",
"typescript": "~5.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"engines": {
"node": ">=12.0.0"
}
}