forked from PaulRobertJr/nextjs-boilerplate-advanced
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.29 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
{
"name": "nextjs-boilerplate-advanced",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"prepare": "husky install",
"emails": "mjml ./emails/templates/*.mjml -o ./emails/dist",
"emails:watch": "mjml -w ./emails/templates/*.mjml -o ./emails/dist",
"generate": "plop --plopfile ./generators/plopfile.js"
},
"dependencies": {
"@chakra-ui/icons": "^1.1.7",
"@chakra-ui/react": "^1.8.7",
"@chakra-ui/theme-tools": "^2.0.5",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@hookform/resolvers": "2.9.0",
"axios": "^0.27.2",
"chakra-react-select": "4.1.2",
"creditcard.js": "^3.0.19",
"date-fns": "^2.28.0",
"framer-motion": "^6",
"js-brasil": "^2.5.3",
"lodash.debounce": "^4.0.8",
"lodash.get": "^4.4.2",
"lodash.omit": "^4.5.0",
"mjml": "^4.13.0",
"next": "12.1.1",
"next-nprogress": "^1.4.0",
"next-seo": "^5.2.0",
"nookies": "^2.5.2",
"numeral": "^2.0.6",
"react": "17.0.2",
"react-datepicker": "^4.7.0",
"react-dom": "17.0.2",
"react-dropzone": "^12.0.5",
"react-hook-form": "7.22.5",
"react-icons": "^4.3.1",
"react-input-mask": "^2.0.4",
"react-number-format": "^4.9.3",
"react-numeral": "^1.1.1",
"react-perfect-scrollbar": "^1.5.8",
"react-phone-number-input": "^3.2.4",
"react-query": "^3.39.1",
"react-select": "^5.4.0",
"react-table": "^7.7.0",
"react-toastify": "^9.0.3",
"styled-jsx": "^5.0.2",
"usehooks-ts": "^2.6.0",
"utility-types": "^3.10.0",
"yup": "^0.32.11",
"yup-locale-pt": "^0.0.9"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-typescript": "^7.16.7",
"@chakra-ui/storybook-addon": "^4.0.4",
"@storybook/addon-actions": "^6.4.22",
"@storybook/addon-essentials": "^6.4.22",
"@storybook/addon-interactions": "^6.4.22",
"@storybook/addon-links": "^6.4.22",
"@storybook/addon-storysource": "^6.5.9",
"@storybook/builder-webpack5": "^6.4.22",
"@storybook/manager-webpack5": "^6.4.22",
"@storybook/react": "^6.4.22",
"@storybook/testing-library": "^0.0.9",
"@types/cookie": "^0.5.1",
"@types/lodash.debounce": "^4.0.7",
"@types/lodash.get": "^4.4.7",
"@types/lodash.omit": "^4.5.7",
"@types/next-nprogress": "^1.4.1",
"@types/node": "17.0.23",
"@types/numeral": "^2.0.2",
"@types/react": "17.0.43",
"@types/react-datepicker": "^4.4.1",
"@types/react-dom": "17.0.14",
"@types/react-input-mask": "^3.0.1",
"@types/react-table": "^7.7.10",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"babel-loader": "^8.2.4",
"babel-plugin-styled-components": "^2.0.6",
"eslint": "8.12.0",
"eslint-config-next": "12.1.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-storybook": "^0.5.10",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"plop": "^3.1.1",
"prettier": "2.6.2",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typescript": "4.6.3"
},
"resolutions": {
"@types/react": "17.0.2",
"styled-jsx": "3.0.0"
}
}