-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.67 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
{
"name": "greex-assignment",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"start": "next start",
"lint": "next lint",
"build": "prisma generate && next build",
"format:write": "prettier --write \"**/*.{css,js,json,jsx,ts,tsx}\"",
"format": "prettier --check \"**/*.{css,js,json,jsx,ts,tsx}\"",
"migrate-dev": "prisma migrate dev",
"prepare": "husky install"
},
"dependencies": {
"@auth/prisma-adapter": "^1.0.2",
"@headlessui/react": "^1.7.17",
"@prisma/client": "^5.3.1",
"axios": "^1.4.0",
"clsx": "^2.0.0",
"crypto-js": "^4.1.1",
"jsonwebtoken": "^9.0.2",
"lightweight-charts": "^4.1.3",
"next": "13.4.19",
"next-auth": "^4.23.1",
"next-seo": "^6.1.0",
"nextjs-progressbar": "^0.0.16",
"nodemailer": "^6.9.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hot-toast": "^2.4.1",
"react-icons": "^4.11.0",
"tailwind-merge": "^1.14.0",
"zod": "^3.22.2"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.5",
"@tailwindcss/typography": "^0.5.9",
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@types/react": "18.2.22",
"autoprefixer": "10.4.15",
"eslint": "8.49.0",
"eslint-config-next": "13.4.19",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"postcss": "8.4.29",
"prettier": "^3.0.2",
"prettier-plugin-tailwindcss": "^0.5.4",
"prisma": "^5.3.1",
"tailwindcss": "3.3.3"
}
}