-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
137 lines (137 loc) · 4.93 KB
/
package.json
File metadata and controls
137 lines (137 loc) · 4.93 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"private": true,
"engines": {
"node": "22.x",
"yarn": ">=1.22.0"
},
"scripts": {
"dev": "next dev",
"build": "ls -la && ls -la .yarn && next build && node scripts/build-sw.mjs && next-sitemap",
"start": "next start",
"typecheck": "tsc --noEmit",
"type-check:watch": "tsc --noEmit --watch",
"type-check:dev": "tsc --noEmit --project tsconfig.dev.json",
"test-types": "tsc --noEmit --project tsconfig.dev.json",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.mdx",
"lint:mdx": "eslint . --ext .mdx",
"format": "prettier --write .",
"format:mdx": "prettier --write '**/*.mdx'",
"test": "jest --watch",
"prepare": "husky",
"analyze": "cross-env ANALYZE=true next build",
"access:run-audits": "cross-env NEXT_PUBLIC_AXE_FORCE_THEME='light' node scripts/create-report-dir.js && yarn lint && axe http://localhost:3000 http://localhost:3000/demos http://localhost:3000/resources --tags wcag2aa --save ./accessibility-reports/axe-report.json --exit && lighthouse http://localhost:3000 --output json --output html --output-path ./accessibility-reports/lighthouse-report-home --only-categories=accessibility --chrome-flags='--headless --no-sandbox --disable-dev-shm-usage' && lighthouse http://localhost:3000/demos --output json --output html --output-path ./accessibility-reports/lighthouse-report-demos --only-categories=accessibility --chrome-flags='--headless --no-sandbox --disable-dev-shm-usage' && lighthouse http://localhost:3000/resources --output json --output html --output-path ./accessibility-reports/lighthouse-report-resources --only-categories=accessibility --chrome-flags='--headless --no-sandbox --disable-dev-shm-usage'",
"access": "start-server-and-test dev http://localhost:3000 access:run-audits",
"audit": "yarn npm audit",
"audit:critical": "yarn npm audit --severity critical",
"audit:fix": "yarn npm audit --fix"
},
"dependencies": {
"@heroicons/react": "^2.2.0",
"@mdx-js/loader": "^3.1.1",
"@mdx-js/react": "^3.1.1",
"@next/mdx": "^15.4.8",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.2",
"@radix-ui/react-tooltip": "^1.2.8",
"@tailwindcss/typography": "^0.5.19",
"@vercel/analytics": "^1.6.1",
"@vercel/speed-insights": "^1.3.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"gray-matter": "^4.0.3",
"lucide-react": "^0.575.0",
"next": "16.2.3",
"next-mdx-remote": "6.0.0",
"next-sitemap": "^4.2.3",
"next-themes": "^0.4.6",
"prop-types": "^15.8.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"remark": "^14.0.1",
"remark-html": "^16.0.1",
"sharp": "^0.34.5",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^3.4.0",
"tailwindcss-animate": "^1.0.7"
},
"dependenciesMeta": {
"@next/swc-win32-x64-msvc": {
"unplugged": true
},
"next": {
"unplugged": true
}
},
"devDependencies": {
"@axe-core/cli": "^4.10.1",
"@eslint/compat": "^1.2.9",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@next/bundle-analyzer": "^16.1.6",
"@next/eslint-plugin-next": "^16.1.6",
"@serwist/build": "^9.2.1",
"@swc/core": "^1.15.21",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.2",
"@types/eslint": "^9.6.1",
"@types/jest": "^30.0.0",
"@types/node": "25.3.5",
"@types/punycode": "^2",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@yarnpkg/pnpify": "^4.1.6",
"acorn": "^8.15.0",
"autoprefixer": "^10.4.27",
"cross-env": "^7.0.3",
"eslint": "^10.0.2",
"eslint-config-next": "^15.4.8",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-mdx": "^3.7.0",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.3.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"lighthouse": "^13.0.3",
"lint-staged": "^15.5.1",
"postcss": "^8.5.8",
"postcss-import": "^16.1.0",
"prettier": "^3.5.3",
"punycode": "^2.3.1",
"serwist": "^9.2.1",
"start-server-and-test": "^2.1.5",
"ts-node": "^10.9.2",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.31.1",
"webpack": "^5.105.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix",
"jest --bail --findRelatedTests --passWithNoTests"
],
"*.mdx": [
"prettier --write",
"eslint --fix"
]
},
"packageManager": "yarn@4.10.3",
"resolutions": {
"punycode": "^2.3.1",
"form-data": "^4.0.4",
"tmp": "^0.2.4",
"tar-fs": "^3.1.1",
"glob": "^10.5.0",
"mdast-util-to-hast": "^13.2.1",
"js-yaml": "^3.14.2"
}
}