-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.76 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
{
"name": "cst3990-restaurant",
"type": "module",
"version": "1.0.0",
"description": "NextJS Restaurant to find and order delicious foods, drinks, and sweets.",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"check": "next lint && tsc --noEmit",
"push": "next lint && npm run type-check && git add . && git diff --quiet && git commit -am \"updates\" && git push -u origin main"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@paypal/react-paypal-js": "^8.1.4",
"@stripe/react-stripe-js": "^2.5.1",
"@stripe/stripe-js": "^3.0.6",
"aws-sdk": "^2.1525.0",
"axios": "^1.6.2",
"bcryptjs": "^2.4.3",
"chart.js": "^4.4.1",
"embla-carousel-react": "8.0.0-rc17",
"eslint": "^8.56.0",
"eslint-config-next": "^14.0.4",
"formidable": "^3.5.1",
"framer-motion": "^10.16.16",
"js-cookie": "^3.0.5",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.3",
"next": "^14.0.4",
"next-auth": "^4.24.5",
"next-themes": "^0.2.1",
"nodemailer": "^6.9.7",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.2.0",
"react-to-print": "^2.14.15",
"stripe": "^14.19.0",
"typescript": "^5.3.3",
"typewriter-effect": "^2.21.0",
"usehooks-ts": "^2.9.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/formidable": "^3.4.5",
"@types/js-cookie": "^3.0.6",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.10.5",
"@types/nodemailer": "^6.4.14",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"autoprefixer": "^10.4.16",
"postcss": "^8.4.32",
"postcss-nesting": "^12.0.2",
"tailwindcss": "^3.4.0"
}
}