-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
146 lines (146 loc) · 5.77 KB
/
Copy pathpackage.json
File metadata and controls
146 lines (146 loc) · 5.77 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
138
139
140
141
142
143
144
145
146
{
"name": "aicodingstack",
"version": "1.0.0",
"description": "AI Coding Stack Website",
"packageManager": "pnpm@11.17.0",
"scripts": {
"dev": "pnpm test:ci && pnpm generate && next dev",
"build:next": "pnpm test:validate && pnpm generate && BUILD_TIME=$(date -u +%Y-%m-%dT%H:%M:%SZ) next build",
"build": "pnpm build:next && opennextjs-cloudflare build --skipBuild",
"start": "next start",
"format": "biome format --write .",
"format:check": "biome format .",
"biome": "biome check --write .",
"biome:check": "biome check .",
"biome:unsafe": "biome check --write --unsafe .",
"check": "pnpm format && pnpm biome && biome check . && pnpm spell && pnpm type-check",
"type-check": "tsc --noEmit --incremental",
"security:audit": "pnpm audit --audit-level=high --registry=https://registry.npmjs.org",
"deps:check-latest": "pnpm outdated",
"deps:update": "pnpm update",
"spell": "cspell '**/*.{ts,tsx,js,jsx,json,md,mdx}'",
"spell:fix": "cspell '**/*.{ts,tsx,js,jsx,json,md,mdx}' --show-suggestions",
"test": "vitest",
"test:ci": "vitest run --reporter=verbose",
"test:e2e": "playwright test",
"test:e2e:ci": "playwright test --reporter=line",
"test:validate": "vitest run tests/validate --reporter=verbose",
"test:urls": "RUN_URL_TESTS=1 vitest run tests/validate/urls.accessibility.test.ts --reporter=verbose",
"validate:i18n": "tsx scripts/validate/validate-i18n.ts",
"validate:i18n-usage": "tsx scripts/validate/validate-i18n-usage.ts",
"validate:i18n-duplicates": "tsx scripts/validate/validate-i18n-duplicates.ts",
"validate:urls": "tsx scripts/validate/visit-urls.ts",
"validate:urls:all": "tsx scripts/validate/visit-urls.ts --locales all --slugs all",
"validate:urls:quick": "tsx scripts/validate/visit-urls.ts",
"data-health": "tsx scripts/validate/data-health.ts",
"data-health:check": "tsx scripts/validate/data-health.ts --check-snapshot --fail-on=error",
"data-health:report": "tsx scripts/validate/data-health.ts --write",
"dev:e2e": "next dev --turbopack -p 3100",
"generate": "tsx scripts/generate/index.ts",
"generate:manifests": "tsx scripts/generate/index.ts manifest-indexes",
"generate:metadata": "tsx scripts/generate/index.ts metadata",
"refactor": "tsx scripts/refactor/index.ts",
"refactor:sort-fields": "tsx scripts/refactor/index.ts sort-manifest-fields",
"fetch": "tsx scripts/fetch/index.ts",
"fetch:github-stars": "tsx scripts/fetch/index.ts github-stars",
"fetch:product-versions": "tsx scripts/fetch/fetch-product-versions.ts --write",
"fetch:product-versions:check": "tsx scripts/fetch/fetch-product-versions.ts --check",
"fetch:benchmarks": "tsx scripts/fetch/fetch-benchmarks.ts --write",
"fetch:benchmarks:check": "tsx scripts/fetch/fetch-benchmarks.ts --check",
"fetch:model-sources": "tsx scripts/fetch/fetch-model-sources.ts --write",
"fetch:model-sources:check": "tsx scripts/fetch/fetch-model-sources.ts --check",
"deploy": "pnpm build:next && opennextjs-cloudflare build --skipBuild && opennextjs-cloudflare deploy",
"preview": "pnpm build:next && opennextjs-cloudflare build --skipBuild && opennextjs-cloudflare preview",
"cf-typegen": "wrangler types --env-interface CloudflareEnv ./cloudflare-env.d.ts",
"analyze": "ANALYZE=true BUILD_TIME=$(date -u +%Y-%m-%dT%H:%M:%SZ) pnpm build",
"prepare": "husky"
},
"dependencies": {
"@mdx-js/react": "^3.1.1",
"@next/third-parties": "^16.2.12",
"@opennextjs/cloudflare": "^1.20.1",
"cmdk": "^1.1.1",
"lucide-react": "^0.563.0",
"next": "^16.2.10",
"next-intl": "^4.13.4",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"recharts": "^3.10.1"
},
"devDependencies": {
"@axe-core/playwright": "^4.12.1",
"@biomejs/biome": "^2.5.6",
"@cspell/dict-de-de": "^4.1.2",
"@cspell/dict-es-es": "^3.0.8",
"@cspell/dict-fr-fr": "^2.3.2",
"@cspell/dict-id-id": "^1.0.7",
"@cspell/dict-pt-pt": "^3.0.6",
"@cspell/dict-ru_ru": "^2.3.2",
"@cspell/dict-tr-tr": "^3.0.6",
"@mdx-js/loader": "^3.1.1",
"@next/bundle-analyzer": "^16.2.12",
"@next/mdx": "^16.2.12",
"@playwright/test": "^1.62.0",
"@tailwindcss/postcss": "^4.3.3",
"@types/mdx": "^2.0.14",
"@types/node": "^22.20.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/parser": "^8.65.0",
"@typescript-eslint/types": "^8.65.0",
"ajv": "^8.20.0",
"ajv-formats": "^3.0.1",
"cspell": "^10.0.1",
"gray-matter": "^4.0.3",
"husky": "9.1.7",
"lint-staged": "17.2.0",
"rehype-highlight": "^7.0.2",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.1",
"tailwindcss": "^4.1.17",
"tsx": "^4.23.1",
"typescript": "^6.0.3",
"user-agents": "^1.1.669",
"vitest": "^4.1.10",
"wrangler": "^4.112.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aicodingstack/aicodingstack.io.git"
},
"author": "Pan YANG",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/aicodingstack/aicodingstack.io/issues"
},
"homepage": "https://github.com/aicodingstack/aicodingstack.io#readme",
"engines": {
"node": "22"
},
"overrides": {
"@node-minify/core": {
".": "9.0.2",
"glob": "12.0.0"
},
"next": {
"sharp": "0.35.2"
},
"postcss": "^8.5.19"
},
"browserslist": [
"defaults and fully supports es6-module",
"maintained node versions"
],
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"biome check --write --no-errors-on-unmatched",
"biome check --no-errors-on-unmatched"
],
"*.{json,jsonc}": [
"biome format --write --no-errors-on-unmatched"
],
"**/*.{ts,tsx,js,jsx,json,md,mdx}": [
"cspell --no-must-find-files"
]
}
}