-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.29 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
{
"name": "oph66-frontend",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"format": "prettier --write .",
"lint": "eslint --ext .astro,.js,.jsx,.ts,.tsx, src && prettier --check '**/*{.astro,.js,.jsx,.ts,.tsx}'",
"prepare": "husky install"
},
"dependencies": {
"@astrojs/check": "^0.3.4",
"@astrojs/node": "^7.0.4",
"@astrojs/react": "^3.0.9",
"@astrojs/tailwind": "^5.1.0",
"@astrojs/ts-plugin": "1.3.1",
"@fontsource/ibm-plex-sans-thai": "^5.0.8",
"@radix-ui/react-icons": "1.3.0",
"@radix-ui/react-switch": "1.0.3",
"@radix-ui/react-toast": "1.1.5",
"astro": "^4.0.8",
"class-variance-authority": "0.7.0",
"clsx": "^2.0.0",
"downloadjs": "1.4.7",
"framer-motion": "^10.16.16",
"html-to-image": "1.11.11",
"lucide-react": "0.309.0",
"qr-scanner": "1.4.2",
"qrcode": "1.5.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sharp": "^0.33.1",
"tailwind-merge": "2.2.0",
"tailwindcss": "^3.4.0",
"tailwindcss-animate": "1.0.7"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@iconify-json/line-md": "1.1.33",
"@iconify-json/logos": "1.1.42",
"@iconify-json/mdi": "1.1.63",
"@iconify/tailwind": "0.1.4",
"@types/downloadjs": "1.4.6",
"@types/node": "20.10.5",
"@types/qrcode": "1.5.5",
"@types/react": "18.2.46",
"@types/react-dom": "18.2.18",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"eslint": "^8.56.0",
"eslint-plugin-astro": "^0.31.0",
"eslint-plugin-tailwindcss": "3.13.1",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"prettier-plugin-astro": "^0.12.3",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.10",
"typescript": "^5.3.3"
},
"engines": {
"node": "^20",
"pnpm": "^8"
},
"packageManager": "pnpm@8.0.0",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{astro,js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}