-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
108 lines (108 loc) · 2.85 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
{
"name": "rasg",
"version": "2.6.2",
"private": true,
"scripts": {
"start": "serve -s build",
"build": "react-scripts build",
"test": "react-scripts test",
"dev": "react-scripts start",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write **/*.{js,ts,tsx}",
"format:check": "prettier --check src/",
"commit": "cz",
"release": "semantic-release --no-ci"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@formspree/react": "^2.4.1",
"@mui/material": "^5.11.1",
"@uiball/loaders": "^1.2.6",
"avvvatars-react": "^0.4.2",
"axios": "^1.2.1",
"buffer": "^6.0.3",
"classnames": "^2.3.2",
"date-fns": "^2.29.3",
"date-fns-tz": "^1.3.7",
"datebook": "^7.1.0",
"formik": "^2.2.9",
"js-cookie": "^3.0.1",
"qrcode.react": "^3.1.0",
"react": "^18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-day-picker": "^8.4.1",
"react-device-detect": "^2.2.2",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-hot-toast": "^2.4.0",
"react-icons": "^4.7.1",
"react-parallax-tilt": "^1.7.77",
"react-password-strength-bar": "^0.4.1",
"react-qr-scanner": "^1.0.0-alpha.11",
"react-router-dom": "^6.5.0",
"react-scripts": "5.0.1",
"react-to-print": "^2.14.10",
"react-transition-group": "^4.4.5",
"react-web-share": "^2.0.2",
"sass": "^1.57.1",
"serve": "^14.1.2",
"sweetalert2": "^11.6.16",
"typescript": "^4.9.4",
"use-local-storage": "^2.3.6",
"web-vitals": "^3.1.0",
"xlsx": "^0.18.5",
"yup": "^0.32.11"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@ialexanderbrito/eslint-config": "^1.2.0",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@types/js-cookie": "^3.0.2",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/react-dom": "^18.0.9",
"@types/react-dropzone": "^5.1.0",
"@types/react-router-dom": "^5.3.3",
"@types/react-transition-group": "^4.4.5",
"@types/sass": "^1.43.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.30.0",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"semantic-release": "^19.0.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "yarn run lint-staged"
}
}
}