-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.56 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.56 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
{
"name": "bookclub-brothers-next",
"version": "0.1.0",
"private": true,
"scripts": {
"d": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest test",
"test:watch": "jest --watch",
"e2e_test": "npx playwright test",
"e2e_report": "npx playwright show-report",
"e2e_ui": "npx playwright test --ui"
},
"dependencies": {
"@react-three/drei": "^9.109.5",
"@react-three/fiber": "^8.17.5",
"@reduxjs/toolkit": "^2.5.1",
"@tailwindcss/postcss": "^4.1.11",
"@tanstack/react-query": "^5.61.4",
"antd": "^6.0.0",
"axios": "^1.6.7",
"chart.js": "^4.4.4",
"gsap": "^3.12.5",
"js-cookie": "^3.0.5",
"next": "^14.2.4",
"react": "^18",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18",
"react-redux": "^9.2.0",
"react-responsive": "^9.0.2",
"three": "^0.167.1"
},
"devDependencies": {
"@eslint/compat": "^1.1.0",
"@eslint/js": "^9.5.0",
"@playwright/test": "^1.57.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/jest": "^30.0.0",
"@types/node": "^20",
"@types/react": "^18.3.26",
"@types/react-dom": "^18.3.7",
"autoprefixer": "^10.0.1",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.3",
"globals": "^15.6.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.11",
"ts-node": "^10.9.2",
"typescript": "^5",
"typescript-eslint": "^7.14.1"
}
}