-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.42 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 3.42 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"type": "module",
"name": "wa-dp",
"private": true,
"version": "3.0.4",
"prettier": {
"endOfLine": "auto"
},
"scripts": {
"dev:frontend": "vite",
"dev:backend": "cd backend && npm run dev",
"inst:frontend": "npm install",
"inst:backend": "cd backend && npm install",
"dev": "concurrently \"npm run dev:frontend\" \"npm run dev:backend\"",
"format": "prettier --write .",
"install-dev": "concurrently \"npm run inst:frontend\" \"npm run inst:backend\"",
"build": "tsc && vite build",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src",
"lint-fix": "eslint --ext .js,.jsx,.ts,.tsx src --fix",
"preview": "vite preview",
"test": "vitest run",
"test:cov": "vitest run --coverage",
"e2e:open": "cypress open",
"e2e:run": "cypress run",
"check-all": "npm run build && npm run lint && npm run format",
"sonar": "npx sonar-scanner -Dproject.settings=sonar-project-local.properties",
"sonar:coverage": "npm run test:cov && npx sonar-scanner -Dproject.settings=sonar-project-local.properties",
"deps:madge": "node scripts/generate-madge.cjs"
},
"dependencies": {
"@heroui/alert": "2.2.23",
"@heroui/button": "2.2.27",
"@heroui/card": "2.2.25",
"@heroui/chip": "2.2.22",
"@heroui/divider": "2.2.20",
"@heroui/dropdown": "2.3.27",
"@heroui/input": "2.4.24",
"@heroui/link": "2.2.23",
"@heroui/modal": "2.2.24",
"@heroui/navbar": "2.2.25",
"@heroui/select": "2.4.28",
"@heroui/slider": "2.4.20",
"@heroui/spinner": "2.2.24",
"@heroui/switch": "2.2.24",
"@heroui/system": "2.4.23",
"@heroui/tabs": "2.2.23",
"@heroui/theme": "2.4.17",
"@heroui/tooltip": "2.2.24",
"@heroui/use-theme": "2.1.10",
"@react-aria/visually-hidden": "~3.9.1",
"@react-types/shared": "~3.36.0",
"bcryptjs": "~3.0.3",
"clsx": "~2.1.1",
"concurrently": "~9.2.1",
"framer-motion": "~12.43.0",
"jsonwebtoken": "~9.0.3",
"next": "~16.2.10",
"react": "~19.2.8",
"react-dom": "~19.2.8",
"react-router-dom": "~7.18.1",
"tailwind-variants": "~3.3.0",
"tailwindcss": "~3.4.19"
},
"devDependencies": {
"@badeball/cypress-cucumber-preprocessor": "^23.2.1",
"@cypress/webpack-preprocessor": "^7.1.1",
"@eslint/compat": "^2.1.0",
"@eslint/eslintrc": "^3.3.6",
"@eslint/js": "^9.39.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.6.0",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@typescript-eslint/eslint-plugin": "^8.65.0",
"@typescript-eslint/parser": "^8.48.1",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/coverage-v8": "^3.2.7",
"autoprefixer": "^10.5.4",
"cypress": "^15.19.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^63.3.2",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-unused-imports": "^4.4.1",
"globals": "^17.8.0",
"jsdom": "^28.1.0",
"madge": "^8.0.0",
"postcss": "^8.5.25",
"prettier": "^3.9.6",
"sonar-scanner": "^3.1.0",
"ts-loader": "^9.6.2",
"typescript": "^5.9.3",
"vite": "^7.3.6",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^3.2.4",
"webpack": "^5.109.2"
}
}