-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.81 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.81 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
{
"name": "ark",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --webpack",
"build": "next build --webpack",
"start": "next start",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:css:syntax": "node tooling/scripts/check-css-syntax.mjs",
"verify:docs": "node tooling/scripts/verify-docs.mjs",
"test": "vitest",
"test:unit": "vitest run",
"test:components": "vitest run blog resume ui site infra styles",
"test:coverage": "vitest run --coverage",
"test:ci": "npm run lint && npm run lint:css:syntax && npm run verify:docs && npm run content:audit && npm run test:unit && npm run build && npm run test:e2e",
"test:e2e": "npx playwright test",
"test:smoke": "vitest run ui/**/*.test.ts ui/**/*.test.tsx blog/api/*.test.ts && npx playwright test --grep @smoke",
"new-post": "node tooling/scripts/posts/new-post.js",
"content:audit": "node tooling/scripts/posts/audit-post-quality.mjs",
"localize:images": "node tooling/scripts/posts/localize-post-images.mjs",
"format": "prettier --write .",
"lint:md": "markdownlint-cli2 --config tooling/config/.markdownlint-cli2.jsonc '**/*.md' '**/*.mdx'",
"lint:spell": "cspell --config tooling/config/cspell.json '**/*'",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,md,mdx}": "prettier --write",
"*.{md,mdx}": "markdownlint-cli2 --config tooling/config/.markdownlint-cli2.jsonc"
},
"prettier": {
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"printWidth": 80
},
"dependencies": {
"@giscus/react": "^3.1.0",
"@mdx-js/loader": "^3.1.1",
"@mdx-js/react": "^3.1.1",
"@supabase/supabase-js": "^2.95.3",
"@tailwindcss/typography": "^0.5.19",
"clsx": "^2.1.1",
"framer-motion": "^11.15.0",
"mermaid": "^11.12.2",
"next": "^16.2.10",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"rehype-pretty-code": "^0.14.1",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.1",
"shiki": "^3.21.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@playwright/test": "^1.51.1",
"@tailwindcss/postcss": "^4.1.18",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^20.17.10",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/coverage-v8": "^4.0.18",
"chalk": "^5.6.2",
"cspell": "^9.6.4",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.20",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"lint-staged": "^16.2.7",
"markdownlint-cli2": "^0.20.0",
"postcss": "^8.5.6",
"prettier": "^3.8.1",
"prompts": "^2.4.2",
"slugify": "^1.6.6",
"tailwindcss": "^4.1.18",
"typescript": "^5.7.2",
"vitest": "^4.0.18"
}
}