-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.06 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
{
"name": "internal-tool",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint-fix": "next lint --fix && prettier --write .",
"lint-check": "next lint && prettier --check .",
"type-check": "tsc --noEmit",
"prepare": "husky"
},
"dependencies": {
"@gsap/react": "^2.1.1",
"@hookform/resolvers": "^3.9.0",
"@radix-ui/colors": "^3.0.0",
"@radix-ui/react-accordion": "^1.2.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-scroll-area": "^1.2.0",
"@radix-ui/react-select": "^2.1.2",
"@react-aria/slider": "^3.7.13",
"@react-aria/visually-hidden": "^3.8.17",
"@react-stately/slider": "^3.5.8",
"classnames": "^2.5.1",
"cloudinary": "^2.5.1",
"eslint-plugin-react-hooks": "^4.3.0",
"gsap": "^3.12.5",
"html-to-image": "^1.11.11",
"mongoose": "^8.8.0",
"next": "14.2.3",
"radix-ui": "^1.0.1",
"react": "^18",
"react-aria-components": "^1.4.1",
"react-dom": "^18",
"react-hook-form": "^7.53.1",
"react-qr-code": "^2.0.15",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-next": "^14.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"sass": "^1.71.1",
"tsx": "^4.19.0",
"typescript": "^5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,html}": [
"eslint --fix",
"prettier --write"
],
"*.{html,scss,css,yml}": "prettier --write"
},
"packageManager": "[email protected]+sha512.4abf725084d7bcbafbd728bfc7bee61f2f791f977fd87542b3579dcb23504d170d46337945e4c66485cd12d588a0c0e570ed9c477e7ccdd8507cf05f3f92eaca"
}