-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.45 KB
/
Copy pathpackage.json
File metadata and controls
128 lines (128 loc) · 3.45 KB
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "telemedicine",
"version": "1.0.0",
"private": true,
"dependencies": {
"@craco/craco": "^6.2.0",
"@material-ui/core": "^4.12.1",
"@material-ui/lab": "^4.0.0-alpha.60",
"@reduxjs/toolkit": "^1.6.1",
"@svgr/webpack": "^5.5.0",
"@types/node": "^15.12.4",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.8",
"@types/react-router": "^5.1.11",
"@types/react-router-dom": "^5.1.7",
"axios": "^0.21.1",
"classnames": "^2.3.1",
"craco": "^0.0.3",
"craco-alias": "^3.0.1",
"create-react-class": "^15.7.0",
"date-fns": "^2.22.1",
"dotenv": "^8.2.0",
"html-react-parser": "^1.3.0",
"moment": "^2.29.1",
"node-sass": "^6.0.0",
"react": "^17.0.2",
"react-calendar": "^3.4.0",
"react-chartjs-2": "^2.10.0",
"react-date-picker": "^8.3.3",
"react-datepicker": "^4.1.1",
"react-dom": "^17.0.2",
"react-intersection-observer": "^8.32.2",
"react-lottie": "^1.2.3",
"react-otp-input": "^2.4.0",
"react-phone-number-input": "^3.1.26",
"react-redux": "^7.2.4",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.3",
"react-yandex-maps": "^4.6.0",
"recharts": "^2.0.10",
"redux-devtools-extension": "^2.13.9",
"sass-loader": "^12.1.0",
"swiper": "^6.8.4",
"typescript": "^4.3.4",
"uuid": "^3.4.0"
},
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "craco test",
"eject": "react-scripts eject",
"eslint": "eslint \"src/**/*.@(js|jsx|ts|tsx)\"",
"eslint:fix": "eslint \"src/**/*.@(js|jsx|ts|tsx)\" --fix",
"reinstal-modules": "rm -rf ./node_modules && yarn cache clean && yarn install",
"prettier": "prettier '**/*.{js,json,ts,tsx}' --write",
"fmt": "yarn eslint:fix && yarn prettier",
"ts": "tsc --noEmit -p ."
},
"eslintConfig": {
"extends": "react-app",
"rules": {
"@typescript-eslint/no-empty-function": "off"
},
"overrides": [
{
"files": [
"**/*.@(js|jsx|ts|tsx)"
],
"rules": {
"react/prop-types": "off"
}
}
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "4.28.0",
"@typescript-eslint/parser": "4.28.0",
"eslint": "^7.29.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react": "^1.1.7",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-react": "^9.2.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.23.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.0",
"react-input-mask": "^2.0.4"
},
"husky": {
"hooks": {
"pre-commit": "yarn ts && lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix --quiet",
"prettier --write",
"git add -- "
],
"*.json": [
"prettier --write",
"git add -- "
]
}
}