-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.3 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.3 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
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
105
106
107
108
109
110
111
112
113
114
115
{
"name": "ip-tracker",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"---------": "",
"lint": "eslint --ext .ts,.tsx src/",
"lint:fix": "yarn run lint --fix",
"prettier": "prettier 'src/**/*.ts*'",
"prettier:fix": "prettier --write 'src/**/*.ts*'",
"stylelint": "stylelint 'src/**/*css'",
"stylelint:fix": "stylelint --fix 'src/**/*css'"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"lint-staged": {
"*.{js,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{css,scss}": "stylelint --fix",
"*.{html,json}": "prettier --write"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"axios": "^1.6.0",
"axios-cache-adapter": "^2.7.3",
"axios-cache-plugin": "^0.1.0",
"axios-hooks": "^3.1.3",
"classnames": "^2.3.2",
"leaflet": "^1.8.0",
"lru-cache": "^7.12.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.45.4",
"react-leaflet": "^4.0.0",
"react-scripts": "5.0.1",
"tailwindcss": "^3.1.3",
"typescript": "^4.7.4"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@commitlint/prompt-cli": "^17.0.3",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.3.0",
"@types/jest": "^28.1.6",
"@types/leaflet": "^1.7.11",
"@types/node": "^18.0.6",
"autoprefixer": "^10.4.7",
"commitlint": "^17.0.3",
"commitlint-config-gitmoji": "^2.2.5",
"eslint": "^8.22.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-config-wdfe": "^1.0.0",
"eslint-import-resolver-typescript": "^3.4.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"markdownlint-cli2": "^0.5.1",
"markdownlint-cli2-formatter-pretty": "^0.0.3",
"postcss": "^8.4.14",
"postcss-fail-on-warn": "^0.2.1",
"postcss-import": "^14.1.0",
"postcss-nested": "^5.0.6",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"stylelint": "^14.10.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-sass-guidelines": "^9.0.1",
"stylelint-config-standard": "^25.0.0",
"stylelint-prettier": "^2.0.0",
"update-browserslist-db": "^1.0.11",
"web-vitals": "^2.1.4"
},
"peerDependencies": {
"@babel/plugin-syntax-flow": "^7.14.5",
"@babel/plugin-transform-react-jsx": "^7.14.9",
"@testing-library/dom": "^7.21.4"
},
"resolutions": {
"yaml": "2.3.1",
"semver": "7.5.4",
"minimatch": "3.0.4"
}
}