-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.23 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.23 KB
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
{
"name": "prietag_fe",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "rm -rf .next && next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@hookform/resolvers": "^3.1.1",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dropdown-menu": "^2.0.5",
"@radix-ui/react-slider": "^1.1.2",
"@reduxjs/toolkit": "^1.9.5",
"@types/chart.js": "^2.9.37",
"@types/lodash.clonedeep": "^4.5.7",
"@types/lodash.debounce": "^4.0.7",
"@types/node": "20.2.5",
"@types/react": "18.2.8",
"@types/react-dom": "18.2.4",
"autoprefixer": "10.4.14",
"axios": "^1.4.0",
"chart.js": "^4.3.0",
"chartjs-plugin-annotation": "^3.0.1",
"chartjs-plugin-datalabels": "^2.2.0",
"class-variance-authority": "^0.6.0",
"clsx": "^1.2.1",
"eslint": "8.42.0",
"eslint-config-next": "13.4.4",
"html2canvas": "^1.4.1",
"lodash.clonedeep": "^4.5.0",
"lodash.debounce": "^4.0.8",
"lucide-react": "^0.241.0",
"next": "13.4.4",
"next-auth": "^4.22.1",
"postcss": "8.4.24",
"react": "18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-colorful": "^5.6.1",
"react-chartjs-2": "^5.2.0",
"react-cookie": "^4.1.1",
"react-datepicker": "^4.12.0",
"react-dom": "18.2.0",
"react-dropzone": "^14.2.3",
"react-hook-form": "^7.44.3",
"react-icons": "^4.9.0",
"react-redux": "^8.0.7",
"react-resizable": "^3.0.5",
"redux": "^4.2.1",
"redux-logger": "^3.0.6",
"tailwind-merge": "^1.13.2",
"tailwindcss": "3.3.2",
"tailwindcss-animate": "^1.0.6",
"typesafe-actions": "^5.1.0",
"typescript": "5.1.3",
"uuid": "^9.0.0",
"yup": "^1.2.0"
},
"devDependencies": {
"@types/react-beautiful-dnd": "^13.1.4",
"@types/react-datepicker": "^4.11.2",
"@types/react-resizable": "^3.0.4",
"@types/redux-logger": "^3.0.9",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.0.0",
"cz-git": "^1.6.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.3.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
}
}