-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.59 KB
/
package.json
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
{
"name": "y-edu-front",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "yarn lint:fix && next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "jest",
"test:watch": "jest-watch",
"coverage": "jest --json --coverage --outputFile=report.json"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint . --fix"
]
},
"dependencies": {
"@tanstack/react-query": "^5.64.1",
"@tanstack/react-query-devtools": "^5.66.0",
"@tanstack/react-table": "^8.20.6",
"@titicaca/eslint-config-triple": "^5.3.1",
"axios": "^1.7.9",
"husky": "^9.1.7",
"lint-staged": "^15.4.1",
"next": "14.2.23",
"react": "18",
"react-dom": "18",
"zod": "^3.24.1",
"zustand": "^5.0.3"
},
"devDependencies": {
"@swc/core": "1.3.93",
"@swc/jest": "0.2.29",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/jest": "^29.5.14",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "8",
"eslint-config-next": "14.2.23",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-tailwindcss": "^3.18.0",
"ignore-loader": "^0.1.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"msw": "^2.7.0",
"postcss": "^8",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.10",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "^5"
},
"msw": {
"workerDirectory": [
"public"
]
}
}