-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
91 lines (91 loc) · 2.49 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
91
{
"name": "zuriportfolio",
"version": "0.1.0",
"private": true,
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint && tsc --noEmit",
"format": "npx prettier --write .",
"postinstall": "husky install",
"genMail": "cd scripts && ts-node mjmlToHtml.ts"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --config ./.prettierrc --write"
],
"**/*.{css,scss,md,html,json}": [
"prettier --config ./.prettierrc --write"
]
},
"dependencies": {
"@headlessui/react": "^1.7.17",
"@mantine/form": "^7.1.2",
"@radix-ui/react-select": "^2.0.0",
"@tanstack/react-query": "^4.36.1",
"@tiptap/pm": "^2.1.12",
"@tiptap/react": "^2.1.12",
"@tiptap/starter-kit": "^2.1.12",
"axios": "^1.5.1",
"class-variance-authority": "^0.7.0",
"csv-parser": "^3.0.0",
"date-fns": "^2.30.0",
"eslint": "8.31.0",
"eslint-config-next": "13.1.1",
"html-to-image": "^1.11.11",
"iconsax-react": "^0.0.8",
"jwt-decode": "^3.1.2",
"mjml": "^4.14.1",
"next": "^13.5.4",
"nprogress": "^0.2.0",
"react": "^18.2.0",
"react-code-blocks": "^0.1.4",
"react-dom": "18.2.0",
"react-dropzone": "^14.2.3",
"react-icons": "^4.11.0",
"react-loading-skeleton": "^3.3.1",
"react-multi-date-picker": "^4.3.3",
"react-paginate": "^8.2.0",
"react-slick": "^0.29.0",
"react-to-pdf": "^1.0.1",
"react-toastify": "^9.1.3",
"recharts": "^2.8.0",
"slick-carousel": "^1.8.1",
"tailwind-merge": "^1.14.0",
"tiptap": "^1.32.2",
"typescript": "4.9.4",
"xlsx": "^0.18.5",
"zod": "^3.22.4"
},
"description": "zuriportfolio frontend",
"devDependencies": {
"@tanstack/eslint-plugin-query": "^4.36.1",
"@types/hast": "^3.0.1",
"@types/mjml": "^4.7.2",
"@types/node": "18.11.18",
"@types/nprogress": "^0.2.1",
"@types/react": "^18.2.28",
"@types/react-dom": "^18.2.13",
"@types/react-slick": "^0.23.10",
"@types/scheduler": "^0.16.4",
"@types/unist": "^3.0.0",
"autoprefixer": "10.4.16",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"postcss": "8.4.31",
"prettier": "^3.0.3",
"tailwind-scrollbar": "^3.0.5",
"tailwindcss": "3.3.3",
"ts-node": "^10.9.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}