-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.96 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
{
"name": "cdcf-website",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:api": "redocly lint --config .redocly.yaml",
"lint:md": "markdownlint-cli2 \"**/*.md\" \"#node_modules\" \"#wordpress/**/vendor\" \"#.next\" \"#coverage\" \"#.claude\" \"#scripts/tests/bats\"",
"lint:md:fix": "markdownlint-cli2 \"**/*.md\" \"#node_modules\" \"#wordpress/**/vendor\" \"#.next\" \"#coverage\" \"#.claude\" \"#scripts/tests/bats\" --fix",
"format:md": "prettier --write \"**/*.md\" \"!node_modules/**\" \"!**/vendor/**\" \"!.next/**\" \"!coverage/**\" \"!.claude/**\" \"!scripts/tests/bats/**\"",
"format:md:check": "prettier --check \"**/*.md\" \"!node_modules/**\" \"!**/vendor/**\" \"!.next/**\" \"!coverage/**\" \"!.claude/**\" \"!scripts/tests/bats/**\"",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"generate-icons": "node scripts/generate-icons.mjs"
},
"dependencies": {
"@heroicons/react": "^2.2.0",
"@tiptap/extension-link": "^3.27.3",
"@tiptap/pm": "^3.27.3",
"@tiptap/react": "^3.27.3",
"@tiptap/starter-kit": "^3.27.3",
"clsx": "^2.1.1",
"next": "^16.2.9",
"next-auth": "5.0.0-beta.31",
"next-intl": "^4.13.2",
"react": "^19.2.7",
"react-dom": "^19.2.6",
"striptags": "^3.2.0"
},
"devDependencies": {
"@redocly/cli": "^2.38.0",
"@tailwindcss/postcss": "^4.3.2",
"@tailwindcss/typography": "^0.5.20",
"@types/node": "^26.1.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitest/coverage-v8": "^4.1.10",
"eslint": "^10.6.0",
"eslint-config-next": "^16.2.10",
"markdownlint-cli2": "^0.23.0",
"postcss": "^8.5.16",
"prettier": "^3.8.4",
"tailwindcss": "^4.3.2",
"typescript": "^6.0.3",
"vitest": "^4.1.6"
},
"overrides": {
"postcss": "$postcss"
}
}