-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.88 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.88 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
{
"name": "mini-project3",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"test": "jest --watchAll",
"postinstall": "npm install rollup @rollup/plugin-node-resolve @rollup/plugin-commonjs"
},
"dependencies": {
"@tailwindcss/vite": "^4.1.4",
"@tanstack/react-query": "^5.74.7",
"axios": "^1.9.0",
"dotenv": "^16.5.0",
"framer-motion": "^12.11.0",
"jsx": "^0.9.89",
"react": "^18.3.1",
"react-dom": "^18.2.0",
"react-icons": "^5.5.0",
"react-router-dom": "^7.5.2",
"react-toastify": "^11.0.5",
"sonner": "^2.0.1",
"tailwindcss": "^4.1.4",
"zustand": "^5.0.4"
},
"devDependencies": {
"@eslint/js": "^9.23.0",
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^14.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^29.5.14",
"@types/react": "^19.0.12",
"@types/react-dom": "^19.0.4",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.21",
"eslint": "^8.57.1",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"tailwindcss": "^3.4.17",
"tailwindcss-cli": "^0.1.2",
"ts-jest": "^29.3.2",
"typescript": "^5.8.2",
"vite": "^6.3.1"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jest-environment-jsdom",
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.jest.json"
}
},
"moduleNameMapper": {
"\\.css$": "identity-obj-proxy"
}
}
}