-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 3.45 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
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "traidoo",
"version": "0.1.0",
"private": true,
"dependencies": {
"@date-io/date-fns": "1.x",
"@hookform/resolvers": "^0.1.1",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@material-ui/pickers": "^3.2.10",
"@react-google-maps/api": "^1.10.1",
"@sentry/react": "^6.1.0",
"@sentry/tracing": "^6.1.0",
"array-to-tree": "^3.3.2",
"autosuggest-highlight": "^3.1.1",
"axios": "^0.21.1",
"axios-auth-refresh": "^3.0.0",
"date-fns": "^2.16.1",
"dinero.js": "^1.8.1",
"env-cmd": "^10.1.0",
"i18next": "^19.7.0",
"i18next-browser-languagedetector": "^6.0.1",
"js-cookie": "^2.2.1",
"jwt-decode": "^2.2.0",
"notistack": "^1.0.0",
"object-to-formdata": "^4.1.0",
"query-string": "^6.13.2",
"react": "^16.13.1",
"react-device-detect": "^1.13.1",
"react-dom": "^16.13.1",
"react-error-boundary": "^3.0.2",
"react-ga": "^3.1.2",
"react-helmet": "^6.1.0",
"react-hook-form": "6.15.1",
"react-i18next": "^11.7.2",
"react-image": "^4.0.3",
"react-lazyload": "^3.0.0",
"react-query": "^2.21.0",
"react-router-dom": "^5.2.0",
"react-use-intercom": "^1.1.2",
"react-window": "^1.8.6",
"sanitize-html": "^1.27.4",
"use-query-params": "^1.1.9",
"yup": "^0.29.3"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.0.4",
"@testing-library/user-event": "^12.1.5",
"@types/autosuggest-highlight": "^3.1.0",
"@types/dinero.js": "^1.6.5",
"@types/googlemaps": "^3.39.13",
"@types/jest": "^26.0.14",
"@types/js-cookie": "^2.2.6",
"@types/jwt-decode": "^2.2.1",
"@types/lodash": "^4.14.161",
"@types/node": "^14.10.3",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@types/react-gtm-module": "^2.0.0",
"@types/react-helmet": "^6.1.0",
"@types/react-lazyload": "^2.6.0",
"@types/react-query": "^1.1.2",
"@types/react-router-dom": "^5.1.5",
"@types/react-window": "^1.8.2",
"@types/sanitize-html": "^1.27.0",
"@types/yup": "^0.29.7",
"@welldone-software/why-did-you-render": "^4.3.1",
"commitizen": "^4.2.1",
"cypress": "^5.2.0",
"cz-conventional-changelog": "3.3.0",
"favicons": "^6.2.0",
"firebase-tools": "^8.10.0",
"http-server": "^0.12.3",
"husky": "^4.3.0",
"i18next-parser": "^3.3.0",
"prettier": "2.1.2",
"react-scripts": "3.4.3",
"standard-version": "^9.0.0"
},
"scripts": {
"start": "BROWSER=none react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"release": "standard-version",
"i18next": "i18next",
"cypress": "cypress",
"cypress:open": "cypress open",
"cypress:run:headless": "cypress run --headless",
"cypress:run:chrome": "cypress run --browser chrome",
"cypress:run:firefox": "cypress run --browser firefox"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
}
}