forked from enbliq/ourKairos
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.68 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.68 KB
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
{
"name": "timelycapsule-web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"test": "jest"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"**/*.{css,json,md}": [
"prettier --write"
]
},
"dependencies": {
"@aws-sdk/client-s3": "^3.772.0",
"@aws-sdk/s3-request-presigner": "^3.772.0",
"@hookform/resolvers": "^3.10.0",
"@tanstack/react-query": "^5.51.11",
"@tanstack/react-query-devtools": "^5.65.1",
"axios": "^1.7.9",
"clsx": "^2.1.1",
"formik": "^2.4.6",
"formik-validator-zod": "^2.2.0",
"framer-motion": "^12.5.0",
"lucide-react": "^0.474.0",
"next": "14.2.23",
"next-auth": "^4.24.11",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.54.2",
"react-icon": "^1.0.0",
"react-icons": "^5.5.0",
"react-quill": "^2.0.0",
"react-router-dom": "^7.2.0",
"uuid": "^11.1.0",
"zod": "^3.24.2",
"zustand": "^4.5.1"
},
"devDependencies": {
"@babel/preset-env": "^7.26.9",
"@babel/preset-react": "^7.26.3",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/jest": "^29.5.14",
"@types/node": "^20",
"@types/react": "18.3.18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.23",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8",
"prettier": "^3.4.2",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.2.6",
"typescript": "^5"
}
}