This repository has been archived by the owner on Jul 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
93 lines (93 loc) · 2.64 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
{
"name": "modir",
"version": "1.0.0",
"private": true,
"scripts": {
"autoformat": "lint-staged",
"bundlesize": "bundlesize",
"check:versions": "node test/ci/unprefixed-versions",
"check:compile": "tsc --noEmit",
"build": "dotenv -e ./.env/prod.env react-app-rewired build",
"eject": "react-scripts eject",
"lint": "eslint 'src/**/*.js' 'src/**/*.ts' 'src/**/*.tsx'",
"start": "dotenv -e ./.env/local.env react-app-rewired start",
"test": "react-app-rewired test"
},
"dependencies": {
"@ionic/react": "5.6.3",
"classnames": "2.2.6",
"dotenv-cli": "^4.0.0",
"lodash-es": "4.17.21",
"query-string": "6.8.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-image": "2.1.3",
"react-map-gl": "5.0.7",
"react-router": "5.0.1",
"react-router-dom": "5.0.1",
"react-router-last-location": "2.0.1",
"react-scripts": "3.2.0",
"react-transition-group": "4.2.1",
"react-window": "1.8.5",
"uri-templates": "0.2.0"
},
"devDependencies": {
"@modus/gimbal-plugin-axe": "1.1.9",
"@modus/gimbal-plugin-source-map-explorer": "1.1.9",
"@types/classnames": "2.2.9",
"@types/gapi.auth2": "0.0.50",
"@types/lodash-es": "4.17.3",
"@types/react": "17.0.3",
"@types/react-dom": "17.0.3",
"@types/react-map-gl": "5.0.0",
"@types/react-router": "5.0.3",
"@types/react-router-dom": "4.3.4",
"@types/react-transition-group": "4.2.0",
"@types/react-window": "1.8.0",
"@types/requestidlecallback": "0.1.1",
"@types/uri-templates": "0.1.30",
"@types/viewport-mercator-project": "6.1.0",
"@typescript-eslint/eslint-plugin": "4.20.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-babel": "5.3.0",
"eslint-plugin-jest": "22.14.0",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "1.6.1",
"hard-source-webpack-plugin": "0.13.1",
"husky": "4.3.8",
"lint-staged": "10.5.4",
"node": "14.16.1",
"node-sass": "4.14.1",
"prettier": "2.2.1",
"react-app-rewired": "2.1.3",
"react-svg-loader": "3.0.3",
"typescript": "4.2.3",
"utility-types": "3.7.0",
"worker-loader": "2.0.0"
},
"resolutions": {
"**/@typescript-eslint/eslint-plugin": "4.1.1",
"**/@typescript-eslint/parser": "4.1.1"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"yarn lint",
"git add"
],
"*.{ts,tsx,json,js,jsx,html,scss,css}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}