-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.78 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": "kaminari",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"lint": "next lint",
"start": "next start",
"test": "jest",
"test:e2e": "cypress open",
"prettier": "prettier --write --ignore-unknown .",
"prettier:check": "prettier --check --ignore-unknown .",
"lint:multi": "yarn prettier:check && yarn lint",
"prepare": "husky install"
},
"lint-staged": {
"**/*.(ts|tsx|js)": [
"eslint --fix .",
"prettier --write --ignore-unknown"
],
"**/*.(md|json)": "prettier --wirte --ignore-unknown"
},
"husky": {
"hooks": {
"pre-commit": "commitlint -E HUSKY_GIT_PARAMS",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@headlessui/react": "^1.7.13",
"@heroicons/react": "^2.0.16",
"@radix-ui/colors": "^0.1.8",
"@radix-ui/react-dropdown-menu": "^2.0.4",
"@radix-ui/react-icons": "^1.3.0",
"@tailwindcss/forms": "^0.5.3",
"@types/node": "^18.15.11",
"@types/react": "^18.0.31",
"@types/react-dom": "^18.0.11",
"clsx": "^1.2.1",
"date-fns": "^2.29.3",
"eslint": "^8.37.0",
"eslint-config-next": "^13.2.4",
"framer-motion": "^10.10.0",
"github-slugger": "^2.0.0",
"lucide-react": "^0.129.0",
"next": "^13.2.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-github-btn": "^1.4.0",
"react-icons": "^4.8.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-pretty-code": "^0.9.4",
"rehype-slug": "^5.1.0",
"remark-gfm": "^3.0.1",
"sharp": "^0.32.0",
"shiki": "^0.14.1",
"tailwind-merge": "^1.11.0",
"unist-util-visit": "^4.1.2"
},
"devDependencies": {
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/github-slugger": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"autoprefixer": "^10.4.14",
"cypress": "^12.9.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-cypress": "^2.13.2",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sonarjs": "^0.19.0",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lint-staged": "^13.2.0",
"postcss": "^8.4.21",
"prettier": "^2.8.7",
"prettier-plugin-tailwindcss": "^0.2.6",
"react-test-renderer": "^18.2.0",
"sass": "^1.60.0",
"tailwindcss": "^3.3.0"
}
}