-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 3.13 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": "panel-webowy-front-cra",
"version": "0.1.0",
"private": true,
"dependencies": {
"@google/maps": "^0.5.5",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/jest": "^24.0.0",
"@types/node": "^12.19.2",
"@types/react-dom": "^16.9.0",
"@types/webfontloader": "^1.6.32",
"actioncable": "^5.2.4-4",
"autoprefixer": "^9.8.6",
"axios": "^0.20.0",
"date-fns": "^2.16.1",
"dotenv": "^8.2.0",
"i18next": "^19.8.3",
"i18next-browser-languagedetector": "^6.0.1",
"mdi-react": "^7.4.0",
"moment": "^2.29.1",
"points-cluster": "^0.1.4",
"polished": "^3.6.7",
"react": "^16.14.0",
"react-datepicker": "^3.3.0",
"react-dom": "^16.14.0",
"react-google-maps": "^9.4.5",
"react-i18next": "^11.7.3",
"react-leaflet": "^2.8.0",
"react-modal": "^3.11.2",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"react-scripts": "^3.4.4",
"react-tooltip-lite": "^1.12.0",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"styled-components": "^5.2.0",
"supercluster": "^7.1.0",
"svg.js": "^2.7.1",
"typescript": "^3.8.3",
"webfontloader": "^1.6.28"
},
"devDependencies": {
"@types/actioncable": "^5.2.3",
"@types/googlemaps": "^3.40.2",
"@types/i18next": "^13.0.0",
"@types/markerclustererplus": "^2.1.33",
"@types/react": "^16.9.53",
"@types/react-datepicker": "^3.1.1",
"@types/react-dom": "^16.9.8",
"@types/react-i18next": "^8.1.0",
"@types/react-leaflet": "^2.5.2",
"@types/react-modal": "^3.10.6",
"@types/react-redux": "^7.1.9",
"@types/react-router-dom": "^5.1.6",
"@types/styled-components": "^5.1.4",
"@types/supercluster": "^5.0.2",
"@welldone-software/why-did-you-render": "^5.0.0-rc.1",
"husky": "^4.3.0",
"react-app-rewired": "^2.1.6",
"react-multi-select-component": "^3.0.4"
},
"scripts": {
"start": "PORT=1234 react-app-rewired start",
"start:win": "set PORT=1234&& react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-app-rewired eject",
"typecheck": "tsc",
"lint": "eslint \"src/**/*.{tsx,ts}\""
},
"husky": {
"hooks": {
"pre-commit": "npm run typecheck && npm run lint"
}
},
"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"
]
},
"jest": {
"moduleNameMapper": {
"@api/(.*)": "<rootDir>/src/api/$1",
"@assets/(.*)": "<rootDir>/src/assets/$1",
"@common/(.*)": "<rootDir>/src/common/$1",
"@features/(.*)": "<rootDir>/src/features/$1",
"@screens/(.*)": "<rootDir>/src/screens/$1",
"@store/(.*)": "<rootDir>/src/store/$1",
"@ui/(.*)": "<rootDir>/src/ui/$1",
"@utils/(.*)": "<rootDir>/src/utils/$1"
}
}
}