-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.31 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.31 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
105
106
{
"name": "@hph/ui",
"version": "2.0.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "next build",
"start": "next start",
"type-check": "tsc --pretty --noEmit",
"lint": "eslint . --ext ts --ext tsx --ext js --cache --fix --max-warnings 0",
"prepare": "husky install",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:a11y": "jest tests/a11y --runInBand",
"test:e2e": "playwright test",
"test:e2e:ci": "playwright test --reporter=line",
"update:dependencies": "npx npm-check-updates -u && npm install"
},
"lint-staged": {
"src/**/*.css": [
"prettier --write --parser css"
],
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix --max-warnings 0",
"prettier --write"
],
"cypress/**/*.{js,jsx,ts,tsx}": [
"eslint --fix --max-warnings 0",
"prettier --write"
]
},
"dependencies": {
"@azure/msal-browser": "^5.6.3",
"@azure/msal-react": "^5.2.1",
"@headlessui/react": "^2.2.10",
"@heroicons/react": "^2.2.0",
"@popperjs/core": "^2.11.8",
"@reduxjs/toolkit": "^2.5.0",
"@stripe/react-stripe-js": "^4.0.2",
"@stripe/stripe-js": "^5.7.0",
"@tanstack/react-query": "^5.99.0",
"@tanstack/react-query-devtools": "^5.99.0",
"@types/nprogress": "^0.2.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.0.2",
"@types/react-star-ratings": "^2.3.3",
"axios": "^1.15.2",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"next": "^16.2.3",
"nprogress": "^0.2.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-hook-form": "^7.72.1",
"react-hotkeys-hook": "^4.6.1",
"react-icons": "^5.6.0",
"react-redux": "^9.2.0",
"recharts": "^2.15.3"
},
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^16.2.4",
"@faker-js/faker": "^9.3.0",
"@next/bundle-analyzer": "^15.5.18",
"@next/eslint-plugin-next": "^16.2.6",
"@playwright/test": "^1.60.0",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/postcss": "^4.3.0",
"@tailwindcss/typography": "^0.5.15",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/jest": "^30.0.0",
"@types/jest-axe": "^3.5.9",
"@types/node": "^22.19.19",
"@typescript-eslint/eslint-plugin": "^8.59.3",
"@typescript-eslint/parser": "^8.59.3",
"autoprefixer": "^10.4.27",
"depcheck": "^1.4.7",
"dpdm": "^3.15.1",
"eslint": "^8.57.1",
"eslint-config-next": "^15.5.18",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-axe": "^9.0.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.11",
"postcss": "^8.5.10",
"postcss-import": "^16.1.0",
"postcss-nested": "^7.0.2",
"postcss-nesting": "12.1.5",
"prettier": "^3.8.3",
"tailwindcss": "4.3.0",
"typescript": "^5.7.2"
},
"packageManager": "yarn@1.22.21+sha1.1959a18351b811cdeedbd484a8f86c3cc3bbaf72"
}