-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 1.91 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
{
"name": "metadata-digger-web-ui",
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/react": "^11.1.1",
"@types/jest": "24.0.21",
"@types/lodash": "^4.14.149",
"@types/node": "12.12.5",
"@types/ramda": "^0.26.37",
"@types/react": "16.9.11",
"@types/react-dom": "16.9.3",
"@types/react-leaflet": "^2.5.1",
"@types/react-redux": "^7.1.9",
"@types/styled-components": "^4.1.21",
"@typescript-eslint/eslint-plugin": "4.1.1",
"@typescript-eslint/parser": "4.1.1",
"admin-lte": "^2.4.18",
"axios": "^0.21.1",
"bootstrap": "^4.4.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"leaflet": "^1.6.0",
"lint-staged": "^10.2.11",
"lodash": "^4.17.15",
"prettier": "^2.0.5",
"ramda": "^0.26.1",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-dropzone": "^10.2.1",
"react-leaflet": "^2.7.0",
"react-redux": "^7.2.0",
"react-scripts": "3.2.0",
"redux": "^4.0.5",
"styled-components": "^4.4.1",
"typescript": "4.0.3",
"victory": "^34.3.7"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint '*/**/*.{js,ts,tsx}'",
"lint:ci": "eslint '*/**/*.{js,ts,tsx}' --quiet",
"lint:fix": "eslint '*/**/*.{js,ts,tsx}' --fix"
},
"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": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.5"
}
}