-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.89 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 3.89 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
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
112
113
114
115
116
117
118
119
120
{
"name": "ifmakersd.com.br",
"version": "0.1.0",
"private": true,
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build && next export",
"start": "next start",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major",
"new:feature": "git checkout -b ",
"merge:to:develop": "git checkout develop && git merge --no-ff ",
"pr": "gh pr create --base main && git branch -D `git branch | grep -E '(feature)'`",
"packages:upgrade:check": "npx npm-check-updates",
"packages:upgrade:do": "ncu -u && yarn install"
},
"dependencies": {
"@contentful/rich-text-plain-text-renderer": "^15.11.1",
"@contentful/rich-text-react-renderer": "^15.11.1",
"@formspree/react": "^2.2.4",
"@iconify/icons-ri": "^1.1.0",
"classnames": "^2.3.1",
"contentful": "^9.1.5",
"date-fns": "^2.28.0",
"formik": "^2.2.9",
"html-react-parser": "^1.4.5",
"intersection-observer": "^0.12.0",
"isomorphic-fetch": "^3.0.0",
"lodash.throttle": "^4.1.1",
"next": "^12.0.8",
"next-pwa": "^5.4.4",
"next-seo": "^4.28.1",
"react": "^17.0.2",
"react-awesome-reveal": "^3.8.1",
"react-dom": "^17.0.2",
"react-ga": "^3.3.0",
"react-id-generator": "^3.0.2",
"react-lazy-load-image-component": "^1.5.1",
"react-toastify": "^8.1.0",
"react-tooltip": "^4.2.21",
"react-wavify": "^1.5.4",
"reading-time": "^1.5.0",
"swr": "^1.1.2",
"yup": "^0.32.11",
"yup-locale-pt": "^0.0.9"
},
"devDependencies": {
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"@iconify/icons-ant-design": "^1.1.1",
"@iconify/icons-bi": "^1.1.12",
"@iconify/icons-bx": "^1.1.4",
"@iconify/icons-cil": "^1.1.0",
"@iconify/icons-clarity": "^1.1.2",
"@iconify/icons-dashicons": "^1.1.0",
"@iconify/icons-fluent": "^1.1.34",
"@iconify/icons-ic": "^1.1.18",
"@iconify/icons-la": "^1.1.0",
"@iconify/icons-mdi": "^1.1.42",
"@iconify/icons-openmoji": "^1.1.19",
"@iconify/react": "^3.1.2",
"@types/lodash.throttle": "^4.1.6",
"@types/node": "^17.0.9",
"@types/react-dom": "^17.0.11",
"@types/react-lazy-load-image-component": "^1.5.2",
"@types/yup": "^0.29.13",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"eslint": "^8.7.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-next": "^12.0.8",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-jest": "^25.7.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"file-loader": "^6.2.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.7",
"next-compose-plugins": "^2.2.1",
"next-images": "^1.8.4",
"next-react-svg": "^1.1.3",
"next-transpile-modules": "^9.0.0",
"normalize-scss": "^7.0.1",
"pinst": "^2.1.6",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^7.2.3",
"prettier": "^2.5.1",
"prettier-stylelint": "^0.4.2",
"sass": "^1.48.0",
"sass-loader": "^12.4.0",
"sass-resources-loader": "^2.2.4",
"standard-version": "^9.3.2",
"stylelint-config-css-modules": "^2.3.0",
"stylelint-config-recommended-scss": "^5.0.2",
"stylelint-config-standard": "^24.0.0",
"stylelint-prettier": "^2.0.0",
"stylelint-scss": "^4.1.0",
"typescript": "^4.5.4",
"typescript-eslint-parser": "^22.0.0",
"url-loader": "^4.1.1"
},
"browserslist": [
">0.3%",
"not ie 11",
"not dead",
"not op_mini all"
],
"husky": {
"hooks": {
"pre-commit": "echo \"[Husky] pre-commit\"",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}