-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.75 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
112
113
114
115
116
117
{
"name": "trainrailhackathon_brasil",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"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:feature": "git checkout develop && git merge --no-ff ",
"pr": "gh pr create --base main && git branch -D `git branch | grep -E '(feature)'`"
},
"dependencies": {
"@commitlint/config-conventional": "^13.1.0",
"@formspree/react": "^2.2.3",
"@iconify/icons-bx": "^1.1.2",
"@iconify/icons-clarity": "^1.1.1",
"@iconify/icons-emojione-v1": "^1.1.0",
"@iconify/icons-ri": "^1.1.0",
"@types/node": "^16.4.5",
"@types/react-dom": "^17.0.9",
"@types/react-lazy-load-image-component": "^1.5.2",
"@types/yup": "^0.29.13",
"@unly/universal-language-detector": "^2.0.3",
"classnames": "^2.3.1",
"date-fns": "^2.23.0",
"file-loader": "^6.2.0",
"formik": "^2.2.9",
"husky": "^7.0.1",
"i18next": "^20.3.5",
"i18next-http-backend": "^1.3.0",
"lodash.get": "^4.4.2",
"lodash.throttle": "^4.1.1",
"next": "11.0.1",
"next-compose-plugins": "^2.2.1",
"next-cookies": "^2.0.3",
"next-images": "^1.8.1",
"next-pwa": "^5.2.24",
"next-react-svg": "^1.1.3",
"next-seo": "^4.26.0",
"next-transpile-modules": "^8.0.0",
"normalize-scss": "^7.0.1",
"pinst": "^2.1.6",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.3.2",
"react": "17.0.2",
"react-awesome-reveal": "^3.8.1",
"react-device-detect": "^1.17.0",
"react-dom": "17.0.2",
"react-ga": "^3.3.0",
"react-i18next": "^11.11.4",
"react-id-generator": "^3.0.1",
"react-lazy-load-image-component": "^1.5.1",
"react-scroll": "^1.8.3",
"react-toastify": "^7.0.4",
"sass": "^1.36.0",
"sass-loader": "^12.1.0",
"sass-resources-loader": "^2.2.3",
"standard-version": "^9.3.1",
"stylelint-config-css-modules": "^2.2.0",
"stylelint-config-recommended-scss": "^4.3.0",
"stylelint-config-standard": "^22.0.0",
"stylelint-scss": "^3.20.1",
"typescript-eslint-parser": "^22.0.0",
"url-loader": "^4.1.1",
"worker-timers": "^7.0.35",
"yup": "^0.32.9",
"yup-locale-pt": "^0.0.8"
},
"devDependencies": {
"@iconify-icons/mdi": "^1.1.17",
"@iconify/icons-ant-design": "^1.1.0",
"@iconify/icons-ion": "^1.1.2",
"@iconify/icons-mdi": "^1.1.17",
"@iconify/react": "^1.1.4",
"@types/lodash.get": "^4.4.6",
"@types/lodash.throttle": "^4.1.6",
"@types/react": "17.0.15",
"@types/react-scroll": "^1.8.3",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"eslint": "^7.31.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-next": "11.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"lint-staged": "^11.1.1",
"stylelint-prettier": "^1.2.0",
"typescript": "4.3.5",
"typescript-plugin-css-modules": "^3.4.0"
},
"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"
}
}
}