-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
81 lines (81 loc) · 2.18 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
{
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"type-check": "tsc",
"seed": "ts-node --script-mode ./prisma/seed.ts",
"prepare": "husky install"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.14",
"@chakra-ui/react": "^2.4.9",
"@dnd-kit/core": "^6.0.6",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@google-cloud/local-auth": "^2.1.1",
"@headlessui/react": "^1.7.5",
"@heroicons/react": "^2.0.13",
"@netlify/plugin-nextjs": "^4.23.1",
"@next-auth/prisma-adapter": "^1.0.5",
"@prisma/client": "^4.1.1",
"@stripe/react-stripe-js": "^1.16.3",
"@stripe/stripe-js": "^1.46.0",
"@tailwindcss/forms": "^0.5.3",
"@tanstack/react-query": "^4.3.1",
"aws-sdk": "^2.1231.0",
"axios": "^1.1.2",
"bcrypt": "^5.0.1",
"checkout-sdk-node": "^2.0.2",
"dayjs": "^1.11.5",
"deep-is": "^0.1.4",
"dotenv": "^16.0.2",
"fast-levenshtein": "^3.0.0",
"formidable": "^2.1.1",
"framer-motion": "^8.5.2",
"frames-react": "^1.0.12",
"google-auth-library": "^8.5.1",
"googleapis": "^107.0.0",
"intercept-stdout": "^0.1.2",
"next": "^12.3.4",
"next-auth": "^4.10.3",
"nodemailer": "^6.7.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.34.2",
"react-router-dom": "^6.6.1",
"react-youtube": "^9.0.3",
"recoil": "^0.7.5",
"stripe": "^11.6.0",
"tailwind-merge": "^1.8.1",
"ts-node": "^10.9.1",
"uuid": "^8.3.2",
"word-wrap": "^1.2.3",
"yarn": "^1.22.19"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/formidable": "^2.0.5",
"@types/node": "^18.6.4",
"@types/nodemailer": "^6.4.5",
"@types/react": "^18.0.15",
"@types/react-dom": "^17.0.1",
"eslint": "8.21.0",
"eslint-config-next": "12.2.4",
"husky": ">=6",
"lint-staged": ">=10",
"postcss-preset-env": "^7.7.2",
"prettier": "^2.8.1",
"prettier-plugin-tailwindcss": "^0.2.0",
"prisma": "^4.8.1",
"tailwindcss": "^3.1.7",
"typescript": "^4.8.2"
},
"lint-staged": {
"*.ts*": [
"eslint --fix",
"prettier --check"
]
}
}