-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.67 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
{
"name": "easy-share",
"version": "1.1.0",
"private": true,
"scripts": {
"release": "yarn semantic-release --no-ci",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint src/** --fix",
"style:check": "prettier --check src/**",
"style:fix": "prettier --write src/**",
"commit:lint": "lint-staged",
"commit": "yarn git-cz"
},
"dependencies": {
"@chakra-ui/react": "^1.6.7",
"@emotion/react": "11",
"@emotion/styled": "11",
"framer-motion": "4",
"next": "11.1.2",
"qrcode": "^1.4.4",
"qrcode.react": "^1.0.1",
"react": "17.0.2",
"react-component-export-image": "^1.0.6",
"react-dom": "17.0.2",
"react-hook-form": "^7.17.2",
"react-icons": "^4.3.1"
},
"devDependencies": {
"@commitlint/cli": "^13.2.0",
"@commitlint/config-conventional": "^13.2.0",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/git": "^10.0.0",
"@types/qrcode": "^1.4.1",
"@types/qrcode.react": "^1.0.2",
"@types/react": "17.0.20",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "3.3.0",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"prettier": "^2.4.0",
"semantic-release": "^18.0.0",
"typescript": "4.4.3"
}
}