-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.15 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.15 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
{
"name": "STOPCOVIDProteGOSafe",
"version": "4.13.0",
"homepage": "./",
"private": true,
"dependencies": {
"@material-ui/core": "^4.11.3",
"@types/jest": "^26.0.10",
"date-fns": "^2.16.1",
"flat": "^5.0.0",
"formik": "^2.1.4",
"i18next": "^19.8.3",
"is-ua-webview": "^1.0.1",
"lodash.invoke": "^4.5.2",
"lodash.isequal": "^4.5.0",
"lodash.orderby": "^4.6.0",
"lodash.uniqueid": "^4.0.1",
"moment": "^2.28.0",
"multiselect-react-dropdown": "^1.5.0",
"sass": "^1.37.0",
"prop-types": "^15.7.2",
"ramda": "^0.27.0",
"react": "^16.13.0",
"react-datepicker": "^3.1.3",
"react-dom": "^16.13.0",
"react-flags-select": "^1.1.13",
"react-i18next": "^11.7.0",
"react-pin-input": "^0.9.2",
"react-redux": "^7.2.0",
"react-scale-text": "^1.2.2",
"react-scrollbars-custom": "^4.0.25",
"react-slick": "^0.25.2",
"react-string-replace": "^0.4.4",
"react-swipeable-views": "^0.13.9",
"react-textarea-autosize": "^7.1.2",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0",
"slick-carousel": "^1.8.1",
"styled-components": "^5.1.1",
"typescript": "^3.9.2",
"uuid": "^8.3.1",
"victory": "^35.4.11",
"yup": "^0.28.3"
},
"resolutions": {
"lodash": "4.17.21",
"hosted-git-info": "2.8.9"
},
"scripts": {
"start": "PORT=3001 react-scripts start",
"prepare-translations": "node locales/build/prepareTranslations.js",
"after-build-tranlations": "node locales/build/afterBuildTranslations.js",
"cypress:open": "cypress open",
"test": "react-scripts test --watchAll=false",
"build": "npm run prepare-translations && react-scripts build && npm run after-build-tranlations",
"eject": "react-scripts eject",
"lint": "eslint . --ext .js,.ts",
"lint:fix": "eslint . --ext .js,.ts --fix",
"precommit": "lint-staged"
},
"eslintConfig": {
"extends": "react-app"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier — single-quote — write",
"git add"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@typescript-eslint/eslint-plugin": "^3.0.0",
"cypress": "^5.5.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"husky": "^4.2.3",
"jest-styled-components": "^7.0.3",
"lint-staged": "^10.0.8",
"prettier": "^1.19.1",
"react-scripts": "3.4.1",
"react-test-renderer": "^16.13.1",
"redux-mock-store": "^1.5.4",
"workbox-build": "^5.1.1"
}
}