-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.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
{
"name": "Form",
"version": "1.0.0",
"private": false,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint-dev": "eslint src --max-warnings=0",
"prepare": "husky install",
"release": "semantic-release --no-ci",
"generate": "yarn plop --plopfile ./generators/plopfile.js"
},
"dependencies": {
"@chakra-ui/react": "^1.6.5",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@fontsource/archivo": "^4.5.0",
"@fontsource/poppins": "^4.5.0",
"cep-promise": "^4.1.1",
"firebase": "^8.8.0",
"formik": "^2.2.9",
"framer-motion": "^4",
"inputmask": "^5.0.6",
"next": "11.0.1",
"next-pwa": "^5.2.23",
"react": "17.0.2",
"react-dom": "17.0.2",
"yup": "^0.32.9"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.14.5",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/inputmask": "^5.0.1",
"@types/node": "^16.3.1",
"@types/react": "17.0.14",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"babel-loader": "^8.2.2",
"babel-plugin-inline-react-svg": "^2.0.1",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "7.30.0",
"eslint-config-next": "11.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-import-helpers": "^1.1.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.1",
"lint-staged": "^11.0.1",
"plop": "^2.7.4",
"prettier": "^2.3.2",
"semantic-release": "^17.4.4",
"typescript": "4.3.5",
"webpack": "^5.45.1"
},
"lint-staged": {
"src/**/*": [
"eslint --max-warnings=0 --fix",
"git add ."
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "git@github.com:PedroHenry-Santos/form"
}
}