-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.67 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.67 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
{
"name": "routing-playground",
"version": "1.0.3",
"private": true,
"homepage": ".",
"dependencies": {
"@googlemaps/react-wrapper": "^1.1.17",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^14.2.0",
"axios": "^0.24.0",
"deck.gl": "^8.7.9",
"googleapis": "^89.0.0",
"lodash": "^4.17.21",
"query-string": "^7.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-google-charts": "^4.0.0",
"react-json-editor-ajrm": "^2.5.13",
"react-loader-spinner": "^4.0.0",
"react-modal": "^3.15.1",
"react-scripts": "5.0.1",
"react-select": "^5.3.2",
"s2-geometry": "^1.2.10",
"web-vitals": "^2.1.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.2.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"prettier": "^2.4.1",
"typescript": "^4.4.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint .",
"format": "eslint . --fix",
"docs": "echo NOT IMPLEMENTED"
},
"proxy": "http://localhost:4040",
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}