-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
105 lines (105 loc) · 3.05 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": "site",
"version": "2.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build:exp": "next build && next export",
"postbuild": "next-sitemap",
"start": "next start",
"lint": "eslint src --max-warnings=0",
"stylelint": "stylelint \"**/styles.ts\" --max-warnings=0",
"check-types": "tsc --noEmit",
"prettier": "prettier --write 'src/**/*.{js,jsx,ts,tsx}'",
"generate": "yarn plop --plopfile generators/plopfile.js",
"pre-commit-lint": "yarn check-types && yarn lint-staged",
"commit": "yarn pre-commit-lint && cz"
},
"lint-staged": {
"src/**/*": [
"yarn lint --fix",
"yarn prettier"
]
},
"dependencies": {
"@chakra-ui/react": "^2.3.6",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@styled-icons/boxicons-logos": "^10.46.0",
"@styled-icons/boxicons-regular": "^10.46.0",
"@styled-icons/heroicons-outline": "^10.46.0",
"aos": "^2.3.4",
"axios": "^1.6.0",
"cookies-next": "^2.1.1",
"framer-motion": "^7.6.1",
"html2canvas": "^1.4.1",
"next": "13.5.6",
"next-seo": "^5.8.0",
"nextjs-progressbar": "^0.0.16",
"plop": "^3.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-easy-crop": "^4.6.1",
"react-hook-form": "^7.38.0",
"styled-components": "^5.3.6",
"vanilla-masker": "^1.2.0",
"yarn-upgrade-all": "^0.7.1"
},
"devDependencies": {
"@types/aos": "^3.0.4",
"@types/jest": "^29.2.0",
"@types/node": "^18.11.6",
"@types/react": "^18.0.23",
"@types/react-dom": "^18.0.7",
"@types/styled-components": "^5.1.26",
"@types/vanilla-masker": "^1.2.1",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.26.0",
"eslint-config-next": "^13.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-no-inline-styles": "^1.0.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^2.0.0",
"lint-staged": "^13.0.3",
"next-sitemap": "^3.1.29",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^3.1.1",
"stylelint": "^14.14.0",
"stylelint-config-recommended": "^9.0.0",
"stylelint-config-standard": "^29.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0",
"typescript": "^4.8.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"keywords": [
"estartandos-devs",
"frontend",
"site"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}