-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.76 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
{
"name": "harena-client",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test:open": "concurrently \"npm run dev\" \"npx cypress open\"",
"test:e2e": "cypress run --spec cypress/e2e/**/*",
"test:unit": "cypress run --component"
},
"dependencies": {
"@harena-com/typescript-client": "^1.0.0",
"@hookform/resolvers": "^3.9.0",
"@tanstack/react-query": "^5.51.4",
"axios": "^1.7.2",
"react": "^18.3.1",
"react-admin": "^5.0.4",
"react-dom": "^18.3.1",
"react-hook-form": "^7.52.1",
"zod": "^3.23.8",
"zustand": "^4.5.4"
},
"devDependencies": {
"@cypress/code-coverage": "^3.12.44",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/node": "^20.14.12",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitejs/plugin-react-swc": "^3.5.0",
"concurrently": "^8.2.2",
"cypress": "^13.13.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"husky": "^9.1.1",
"lint-staged": "^15.2.7",
"prettier": "^3.3.3",
"sonarqube-scanner": "^4.0.1",
"typescript": "^5.2.2",
"vite": "^5.3.4",
"vite-plugin-istanbul": "^6.0.2",
"vite-tsconfig-paths": "^4.3.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,md}": [
"prettier --write"
]
}
}