-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.5 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.5 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
{
"name": "capstone-2",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"server": "node api/index.js",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --runInBand",
"test:watch": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --watch",
"cy:open": "cypress open",
"cy:run": "cypress run"
},
"dependencies": {
"antd": "^5.26.6",
"axios": "^1.13.4",
"cors": "^2.8.6",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"firebase": "^12.2.1",
"framer-motion": "^12.23.13",
"lottie-react": "^2.4.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.5.0",
"react-router-dom": "^7.7.0",
"react-toastify": "^11.0.5",
"react-hook-form": "^7.62.0",
"zod": "^4.1.9"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@hookform/resolvers": "^5.2.2",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react": "^4.3.4",
"cross-env": "^10.0.0",
"cypress": "^15.2.0",
"eslint": "^9.22.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"jest": "^30.1.3",
"jest-environment-jsdom": "^30.1.2",
"vite": "^6.3.1"
}
}