-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.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
{
"name": "covid-19-ui-react",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next",
"export": "next export",
"format": "prettier \"src/**/*.{ts,tsx,js,jsx}\" --check",
"format:fix": "prettier \"src/**/*.{ts,tsx,js,jsx}\" --write",
"lint": "eslint --no-error-on-unmatched-pattern --ext .ts,.tsx,.js,.jsx --max-warnings 0 ./src",
"lint:fix": "eslint --no-error-on-unmatched-pattern --ext .ts,.tsx,.js,.jsx ./src --fix",
"ts": "tsc",
"upgrade-interactive": "npm-check --update"
},
"dependencies": {
"@reduxjs/toolkit": "^1.5.1",
"@types/gtag.js": "^0.0.8",
"axios": "^0.21.2",
"bootstrap": "^4.6.0",
"dayjs": "^1.10.5",
"mapbox-gl": "^2.3.0",
"next": "^11.1.3",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-bootstrap": "^1.6.0",
"react-dom": "^17.0.2",
"react-hot-toast": "^2.1.1",
"react-map-gl": "^5.2.10",
"react-redux": "^7.2.6",
"redux-saga": "^1.1.3",
"sass": "^1.44.0"
},
"devDependencies": {
"@types/mapbox-gl": "^2.1.2",
"@types/node": "^16.11.11",
"@types/react": "^17.0.37",
"@types/react-map-gl": "^5.2.9",
"@types/react-redux": "^7.1.16",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"npm-check": "^5.9.2",
"prettier": "^2.2.1",
"typescript": "^4.3.2"
}
}