-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.81 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
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"lint": "next lint",
"commitlint": "commitlint",
"commit": "cz"
},
"dependencies": {
"@chakra-ui/react": "^2.2.1",
"@chakra-ui/react-utils": "^2.0.1",
"@emotion/core": "^11.0.0",
"@emotion/is-prop-valid": "^1.1.2",
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@next/env": "latest",
"@yarnpkg/pnpify": "^4.0.0-rc.9",
"framer-motion": "^6.3.11",
"lodash": "^4.17.21",
"lottie-web": "^5.9.2",
"next": "latest",
"next-i18next": "latest",
"next-sitemap": "^3.1.7",
"nprogress": "^0.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sharp": "^0.31.3"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@emotion/eslint-plugin": "^11.2.0",
"@svgr/webpack": "^6.2.1",
"@types/gtag.js": "^0.0.10",
"@types/lodash": "^4.14.182",
"@types/node": "^17.0.42",
"@types/nprogress": "^0.2.0",
"@types/react": "^18.0.14",
"commitizen": "^4.2.4",
"eslint": "7.32.0",
"eslint-config-next": "11.0.1",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.1",
"lint-staged": "^11.1.2",
"prettier": "^2.4.1",
"stylelint": "^13.13.1",
"stylelint-config-recommended": "^5.0.0",
"stylelint-config-standard": "^22.0.0",
"stylelint-order": "^4.1.0",
"stylelint-processor-styled-components": "^1.10.0",
"typescript": "4.7.3"
},
"lint-staged": {
"./**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"packageManager": "[email protected]"
}