-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.41 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.41 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
{
"name": "techtavern-nextjs.github.io",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:webpack": "next dev --webpack",
"build": "next build",
"start": "next start",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "npm run typecheck && npm run lint && npm run test:coverage",
"test:a11y": "playwright test tests/accessibility.spec.js",
"test:smoke": "playwright test tests/smoke.spec.ts",
"test:playwright": "playwright test",
"verify-test-data": "node scripts/verify-test-data.js",
"test:a11y-static": "node accessibility-test.js",
"new-article": "node scripts/new-article.js",
"watch:content": "chokidar \"content/articles/**/*.mdx\" -c \"echo [content] change detected\"",
"dev:watch": "concurrently -k -n dev,content -c green,cyan \"next dev\" \"npm:watch:content\"",
"analyze": "ANALYZE=true next build"
},
"dependencies": {
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@next/mdx": "^16.2.6",
"@types/mdx": "^2.0.13",
"class-variance-authority": "^0.7.1",
"fast-glob": "^3.3.3",
"gray-matter": "^4.0.3",
"lucide-react": "^1.16.0",
"next": "^16.2.6",
"next-mdx-remote": "^6.0.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.3",
"@eslint/eslintrc": "^3.3.5",
"@next/bundle-analyzer": "^16.2.6",
"@playwright/test": "^1.60.0",
"@tailwindcss/postcss": "^4.3.0",
"@tailwindcss/typography": "^0.5.16",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^25.9.1",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"baseline-browser-mapping": "^2.10.31",
"chokidar-cli": "^3.0.0",
"concurrently": "^9.1.0",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.6",
"jest": "^30.4.2",
"jest-environment-jsdom": "^30.4.1",
"playwright": "^1.60.0",
"postcss": "^8.5.15",
"tailwindcss": "^4.3.0",
"typescript": "^6.0.3",
"whatwg-url": "^16.0.1"
},
"overrides": {
"next": {
"postcss": "$postcss"
}
}
}