-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
97 lines (97 loc) · 2.49 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
{
"babel": {
"presets": [
"react-app"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"bugs": {
"url": "https://github.com/Artsdatabanken/nin-kart-frontend/issues"
},
"dependencies": {
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@sentry/browser": "^7.80.1",
"classnames": "^2.3.2",
"leaflet": "^1.9.4",
"markdown-to-jsx": "^7.3.2",
"react": "^17.0.2",
"react-color": "^2.19.3",
"react-dom": "^17.0.2",
"react-router": "^6.18.0",
"react-router-dom": "^6.18.0",
"react-scripts": "^5.0.1",
"react-shallow-renderer": "^16.15.0",
"react-use": "^17.4.0",
"sass": "^1.69.5",
"tangram": "^0.21.1"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"babel-loader": "8.1.0",
"coveralls": "^3.1.1",
"enzyme": "^3.11.0",
"eslint-config-prettier": "^7.0.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"pretty-quick": "^3.1.3"
},
"eslintConfig": {
"extends": [
"react-app",
"plugin:prettier/recommended",
"plugin:jsx-a11y/recommended"
],
"plugins": [
"prettier",
"jsx-a11y",
"react-hooks"
],
"rules": {
"react-hooks/exhaustive-deps": 2,
"react-hooks/rules-of-hooks": 2,
"jsx-a11y/label-has-associated-control": 0,
"jsx-a11y/alt-text": 1,
"jsx-a11y/click-events-have-key-events": 0,
"jsx-a11y/no-static-element-interactions": 0,
"jsx-a11y/tabindex-no-positive": 0,
"jsx-a11y/no-noninteractive-element-interactions": 0,
"jsx-a11y/no-noninteractive-tabindex": 0,
"prettier/prettier": 0
}
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"jest": {
"coverageReporters": [
"lcov"
]
},
"license": "MIT",
"name": "nin-kart-frontend",
"private": true,
"scripts": {
"build": "react-scripts build",
"build-storybook": "build-storybook -s public -o build/storybook",
"deploy": "scp -r build/* grunnkart@hydra:~/statics",
"eject": "react-scripts eject",
"report-coverage": "coveralls < coverage/lcov.info",
"start": "react-scripts start",
"storybook": "start-storybook -p 9009 -s public",
"test": "react-scripts test --coverage",
"test:watch": "react-scripts test --watch"
},
"version": "0.2.0"
}