-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.72 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
{
"name": "covid-19-data",
"private": true,
"description": "COVID-19 Stats App",
"version": "2.2.1",
"author": "sozonome",
"engines": {
"node": ">=16.x.x",
"pnpm": ">=8"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint src --fix && pnpm format",
"type-check": "tsc --noEmit",
"check:turbo": "npx turbo lint type-check",
"format": "prettier --write src",
"up-interactive": "pnpm up -i",
"up-latest": "pnpm up-interactive -L",
"release": "standard-version",
"push-release": "git push --follow-tags origin main",
"prepare": "husky install"
},
"dependencies": {
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fontsource/jost": "^5.0.15",
"@lottiefiles/react-lottie-player": "^3.5.3",
"animated-number-react": "^0.1.2",
"axios": "^1.6.2",
"framer-motion": "^10.16.11",
"next": "^14.0.3",
"next-pwa": "^5.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.12.0",
"react-select": "^5.8.0",
"swr": "^2.2.4"
},
"devDependencies": {
"@commitlint/config-conventional": "^18.4.3",
"@types/node": "^20.10.1",
"@types/react": "^18.2.39",
"commitlint": "^18.4.3",
"eslint": "^8.54.0",
"eslint-config-next": "^14.0.3",
"eslint-config-sznm": "^2.0.2",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"standard-version": "^9.5.0",
"typescript": "^5.3.2"
},
"repository": {
"type": "git",
"url": "https://github.com/sozonome/covid-19-data"
},
"bugs": {
"url": "https://github.com/sozonome/covid-19-data/issues"
}
}