-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.14 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 3.14 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
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
94
95
96
97
98
99
100
101
102
103
104
{
"name": "simpl-api",
"author": "ByteKatana",
"version": "v0.5.0",
"private": true,
"license": "AGPL-3.0-only",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"test": "jest",
"test:watch": "jest --watch",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"format:write": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@auth/prisma-adapter": "^2.11.2",
"@hello-pangea/dnd": "^18.0.1",
"@hookform/resolvers": "^5.4.0",
"@prisma/client": "6.19.3",
"@prisma/extension-accelerate": "^3.0.1",
"@radix-ui/react-icons": "^1.3.2",
"@tanstack/react-form": "^1.33.0",
"@tanstack/react-form-nextjs": "^1.33.0",
"@tanstack/react-query": "^5.101.2",
"@tanstack/react-table": "^8.21.3",
"bcryptjs": "^3.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"ioredis": "^5.11.1",
"lucide-react": "^1.23.0",
"mongodb": "^7.4.0",
"next": "16.2.10",
"next-auth": "5.0.0-beta.31",
"next-themes": "^0.4.6",
"nodemailer": "^9.0.3",
"radix-ui": "^1.6.1",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-hook-form": "^7.80.0",
"react-icons": "^5.7.0",
"recharts": "^3.9.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"tailwindcss-animated": "^2.1.0",
"uid": "^2.0.2",
"zustand": "^5.0.14"
},
"devDependencies": {
"@badeball/cypress-cucumber-preprocessor": "^25.0.0",
"@bahmutov/cypress-esbuild-preprocessor": "^2.2.8",
"@cucumber/cucumber": "^13.0.0",
"@eslint/js": "^9.39.4",
"@tailwindcss/postcss": "^4.3.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/cypress-cucumber-preprocessor": "^4.0.5",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/node": "^26.1.0",
"@types/nodemailer": "^8.0.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.62.1",
"@typescript-eslint/parser": "^8.62.1",
"cypress": "^15.17.0",
"dotenv": "^17.4.2",
"eslint": "^9.39.4",
"eslint-plugin-cypress": "^6.4.2",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-testing-library": "^7.16.2",
"globals": "^17.7.0",
"jest": "^30.4.2",
"jest-environment-jsdom": "^30.4.1",
"next-devtools-mcp": "^0.4.0",
"next-router-mock": "^1.0.5",
"node-mocks-http": "^1.18.1",
"postcss": "^8.5.16",
"prettier": "^3.9.4",
"prettier-eslint": "^17.1.1",
"prisma": "6.19.3",
"shadcn": "^4.13.0",
"tailwindcss": "^4.3.2",
"ts-jest": "^29.4.11",
"ts-node": "^10.9.2",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.1",
"zod": "^4.4.3"
},
"overrides": {
"nodemailer": "$nodemailer"
}
}