-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
104 lines (104 loc) · 2.63 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
{
"name": "map-app",
"version": "1.2.1",
"homepage": "https://brokalys.com",
"private": true,
"dependencies": {
"@apollo/client": "^3.0.0-beta.45",
"@brokalys/location-json-schemas": "^1.4.3",
"@bugsnag/js": "^7.22.4",
"@bugsnag/plugin-react": "^7.19.0",
"@nivo/bar": "^0.85.1",
"@nivo/core": "^0.85.1",
"@nivo/line": "^0.85.1",
"@react-google-maps/api": "^2.8.1",
"apollo-link": "^1.2.14",
"apollo-link-debounce": "^3.0.0",
"apollo-link-rest": "^0.8.0",
"geolib": "^3.3.1",
"graphql": "^16.2.0",
"graphql-anywhere": "^4.2.7",
"history": "^5.3.0",
"lottie-react": "^2.1.0",
"moment": "^2.25.3",
"query-string": "^7.0.0",
"react": "^18.0.0",
"react-datepicker": "^4.8.0",
"react-dom": "^18.0.0",
"react-error-boundary": "^3.0.0",
"react-loading-skeleton": "^3.0.1",
"react-places-autocomplete": "^7.3.0",
"react-router-dom": "^6.3.0",
"react-table": "^7.6.3",
"sass": "^1.45.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^2.0.1",
"transliteration": "^2.1.11",
"use-query-params": "^2.1.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.9.0",
"@testing-library/react": "^13.0.1",
"@testing-library/user-event": "^14.1.0",
"@trivago/prettier-plugin-sort-imports": "^3.1.1",
"@types/d3-shape": "^3.0.2",
"@types/geojson": "^7946.0.8",
"@types/jest": "^29.2.2",
"@types/node": "^18.11.9",
"@types/react": "^18.0.9",
"@types/react-datepicker": "^4.8.0",
"@types/react-dom": "^18.0.3",
"@types/react-places-autocomplete": "^7.2.9",
"@types/react-table": "^7.7.11",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.0.5",
"react-scripts": "5.0.1",
"typescript": "^4.6.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"prepare": "husky install"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"plugin:react-hooks/recommended"
],
"rules": {
"react/destructuring-assignment": [
1,
"never"
]
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "cz-emoji"
},
"cz-emoji": {
"symbol": true
}
}
}