-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.33 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "participle-plus",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --fix",
"lint:css": "stylelint \"src/**/*.scss\"",
"precm": "git add .",
"cm": "cz",
"prepare": "husky install",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@emotion/css": "^11.10.0",
"@emotion/react": "^11.10.4",
"@emotion/server": "^11.10.0",
"@hookform/resolvers": "^2.9.1",
"@mantine/carousel": "^7.10.1",
"@mantine/core": "^7.10.1",
"@mantine/dates": "^7.10.1",
"@mantine/form": "^7.10.1",
"@mantine/hooks": "^7.10.1",
"@mantine/modals": "^7.10.1",
"@mantine/next": "^6.0.21",
"@mantine/notifications": "^7.10.1",
"@reduxjs/toolkit": "^2.0.1",
"@tabler/icons": "^1.106.0",
"@tabler/icons-react": "^3.5.0",
"@tailwindcss/line-clamp": "^0.4.0",
"@tanstack/react-query": "^5.40.0",
"chart.js": "^3.9.1",
"classnames": "^2.3.1",
"clsx": "^2.1.1",
"cookie": "^0.5.0",
"dayjs": "^1.11.3",
"embla-carousel-autoplay": "^7.1.0",
"embla-carousel-react": "^7.1.0",
"framer-motion": "^11.2.10",
"isomorphic-fetch": "^3.0.0",
"js-cookie": "^3.0.1",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"next": "14.0.3",
"object-hash": "^3.0.0",
"react": "^18",
"react-card-flip": "^1.1.6",
"react-chartjs-2": "^4.3.1",
"react-cookie": "^7.1.4",
"react-dom": "^18",
"react-hook-form": "^7.32.2",
"react-query": "^3.39.1",
"react-redux": "^9.0.4",
"react-responsive-carousel": "^3.2.23",
"react-toastify": "^10.0.5",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.18.5",
"@commitlint/cli": "^17.0.2",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-interactions": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/builder-webpack5": "^6.5.9",
"@storybook/manager-webpack5": "^6.5.9",
"@storybook/react": "^6.5.9",
"@storybook/testing-library": "^0.0.13",
"@types/gtag.js": "^0.0.10",
"@types/js-cookie": "^3.0.2",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"autoprefixer": "^10.0.1",
"babel-loader": "^8.2.5",
"commitizen": "^4.2.4",
"commitlint-config-gitmoji": "^2.2.5",
"cz-customizable": "^6.3.0",
"eslint": "^8",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "14.0.3",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-storybook": "^0.5.12",
"husky": "^7.0.0",
"postcss": "^8",
"postcss-loader": "^7.0.0",
"prettier": "^2.6.2",
"sass": "^1.52.3",
"stylelint": "^14.9.1",
"stylelint-config-prettier-scss": "^0.0.1",
"stylelint-config-standard-scss": "^4.0.0",
"tailwindcss": "^3.3.0",
"typescript": "^5.1.0"
},
"config": {
"commitizen": {
"path": "cz-customizable"
}
}
}