This repository has been archived by the owner on Aug 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.82 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
{
"name": "rpkm66-frontend",
"version": "0.1.0",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": "^18.12",
"pnpm": "^8"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --fix",
"format": "prettier --write .",
"prepare": "husky install"
},
"dependencies": {
"@headlessui/react": "1.7.15",
"@heroicons/react": "2.0.18",
"autoprefixer": "10.4.14",
"axios": "1.4.0",
"clsx": "1.2.1",
"dom-to-image": "2.6.0",
"framer-motion": "10.12.18",
"html-to-image": "1.11.11",
"next": "13.4.7",
"next-mdx-remote": "4.4.1",
"postcss": "8.4.24",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-qr-code": "2.0.11",
"react-qr-reader": "3.0.0-beta-1",
"tailwind-merge": "1.14.0",
"tailwind-variants": "0.1.13",
"tailwindcss": "3.3.2"
},
"devDependencies": {
"@commitlint/cli": "17.6.6",
"@commitlint/config-conventional": "17.6.6",
"@tailwindcss/typography": "0.5.9",
"@types/node": "18.16.19",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"eslint": "8.44.0",
"eslint-config-next": "13.4.7",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.3",
"lint-staged": "13.2.3",
"prettier": "2.8.8",
"prettier-plugin-tailwindcss": "0.3.0",
"typescript": "5.1.6"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}