-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.42 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 3.42 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
{
"name": "fe_partners_dashboard",
"version": "2.0.0",
"private": true,
"engines": {
"node": "<=14.15.0",
"npm": "<=7.19.0",
"yarn": "<=1.22.10"
},
"os": [
"linux",
"win32"
],
"dependencies": {
"@babel/helper-define-map": "7.13.12",
"@babel/helper-skip-transparent-expression-wrappers": "7.12.1",
"@firebase/messaging": "0.7.14",
"@material-ui/core": "4.12.2",
"@material-ui/icons": "4.9.1",
"@material-ui/lab": "4.0.0-alpha.56",
"@sentry/react": "6.2.5",
"@sentry/tracing": "6.2.5",
"apexcharts": "3.27.2",
"axios": "0.21.1",
"babel-jest": "24.9.0",
"dotenv": "8.2.0",
"filesize": "6.1.0",
"firebase": "8.7.1",
"fuse.js": "6.4.6",
"madge": "4.0.2",
"material-icons-react": "1.0.4",
"moment": "2.29.0",
"pusher-js": "7.0.2",
"react": "16.13.1",
"react-apexcharts": "1.3.9",
"react-beautiful-dnd": "13.1.0",
"react-circular-progressbar": "2.0.3",
"react-code-input": "3.10.1",
"react-dom": "16.13.1",
"react-dropzone": "11.3.4",
"react-feather": "2.0.9",
"react-google-recaptcha": "2.1.0",
"react-icons": "4.2.0",
"react-notification-badge": "1.5.1",
"react-number-format": "4.4.4",
"react-pusher": "0.2.0",
"react-router": "5.2.0",
"react-router-dom": "5.2.0",
"react-scripts": "3.4.3",
"react-sound": "1.2.0",
"react-swipeable-views": "0.13.9",
"react-to-print": "2.12.6",
"react-toastify": "7.0.3",
"semantic-ui-react": "2.0.3",
"socket.io-client": "4.1.2",
"styled-components": "5.2.1",
"use-sound": "2.0.2"
},
"devDependencies": {
"@commitlint/cli": "12.1.1",
"@commitlint/config-conventional": "12.1.1",
"@testing-library/react": "9.3.2",
"@testing-library/user-event": "7.1.2",
"@types/node": "12.0.0",
"@types/react": "16.9.0",
"@types/react-dom": "16.9.0",
"@typescript-eslint/eslint-plugin": "2.12.0",
"@typescript-eslint/parser": "2.12.0",
"commitizen": "4.2.3",
"cz-conventional-changelog": "3.3.0",
"eslint": "6.7.2",
"eslint-config-airbnb": "18.0.1",
"eslint-config-prettier": "6.7.0",
"eslint-plugin-import": "2.19.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-react": "7.17.0",
"eslint-plugin-react-hooks": "1.7.0",
"husky": "3.0.9",
"lint": "0.7.0",
"lint-staged": "10.5.4",
"prettier": "2.2.1"
},
"scripts": {
"staging": "react-scripts start",
"start": "react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"eslint:check": "eslint 'src/**/*.{js,jsx}' --fix",
"format": "prettier '**/*.{js,jsx}' --write",
"commit": "cz"
},
"eslintConfig": {
"extends": "react-app"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"pre-commit": "lint-staged && madge --circular ./",
"pre-push": "lint-staged && madge --circular ./"
}
},
"lint-staged": {
"*.js": [
"yarn format",
"git add ."
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}