-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.48 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
{
"name": "github-api",
"version": "1.0.0",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint src --fix && pnpm format",
"lint:strict": "eslint --max-warnings=0 src",
"typecheck": "tsc --noEmit --incremental false",
"test:watch": "jest --watch",
"test": "jest",
"format": "prettier -w .",
"format:check": "prettier -c .",
"release": "standard-version",
"push-release": "git push --follow-tags origin main",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"prepare": "husky install"
},
"dependencies": {
"@next/bundle-analyzer": "^12.2.3",
"@tanstack/react-query": "^4.0.9",
"@tanstack/react-query-devtools": "^4.0.8",
"clsx": "^1.1.1",
"dayjs": "^1.11.3",
"framer-motion": "^6.3.16",
"next": "^12.1.6",
"next-progress": "^2.2.0",
"react": "^18.2.0",
"react-countup": "^6.3.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"tailwind-merge": "^1.3.0",
"tailwindcss": "^3.1.3"
},
"devDependencies": {
"@commitlint/cli": "^16.3.0",
"@commitlint/config-conventional": "^16.2.4",
"@svgr/webpack": "^6.2.1",
"@swc/cli": "^0.1.57",
"@swc/core": "^1.2.223",
"@tailwindcss/forms": "^0.5.2",
"@testing-library/dom": "^8.16.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.1",
"@types/jest": "^28.1.4",
"@types/react": "^18.0.14",
"@types/testing-library__jest-dom": "^5.14.5",
"@types/throttle-debounce": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"autoprefixer": "^10.4.7",
"commitlint": "^17.0.3",
"eslint": "^8.18.0",
"eslint-config-next": "^12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.1.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.5.0",
"next-sitemap": "^2.5.28",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.11",
"standard-version": "^9.5.0",
"typescript": "^4.7.4"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --max-warnings=0",
"prettier -w"
],
"src/**/*.{json,css,scss,md}": [
"prettier -w"
]
}
}