forked from brokalys/map-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.23 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
{
"name": "map-app",
"version": "0.2.0",
"homepage": "https://map.brokalys.com",
"private": true,
"dependencies": {
"@apollo/client": "^3.0.0-beta.45",
"@brokalys/location-json-schemas": "^1.2.0",
"@bugsnag/js": "^7.1.0",
"@bugsnag/plugin-react": "^7.1.0",
"@nivo/bar": "^0.75.0",
"@nivo/core": "^0.75.0",
"@nivo/line": "^0.75.0",
"@react-google-maps/api": "^2.1.1",
"apollo-link": "^1.2.14",
"apollo-link-debounce": "^3.0.0",
"apollo-link-rest": "^0.8.0",
"connected-react-router": "^6.9.1",
"geolib": "^3.3.1",
"graphql": "^16.2.0",
"graphql-anywhere": "^4.2.7",
"history": "^4.10.1",
"lottie-react": "^2.1.0",
"moment": "^2.25.3",
"prop-types": "^15.7.2",
"query-string": "^7.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-error-boundary": "^3.0.0",
"react-github-corner": "^2.3.0",
"react-loading-skeleton": "^3.0.1",
"react-redux": "^7.2.3",
"react-router-dom": "^5.2.0",
"react-table": "^7.6.3",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.9",
"redux-saga": "^1.1.3",
"reselect": "^4.0.0",
"sass": "^1.45.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^2.0.1",
"transliteration": "^2.1.11"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.9.0",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.2",
"prettier": "^2.0.5",
"react-scripts": "5.0.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"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"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,json,css,scss,md}": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "cz-emoji"
},
"cz-emoji": {
"symbol": true
}
}
}