-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.33 KB
/
package.json
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
{
"name": "nextra-docs-template",
"version": "0.0.1",
"description": "Nextra docs template",
"scripts": {
"dev": "next dev -p 4390",
"build": "next build",
"start": "next start",
"i18n": "tsx scripts/i18n.ts",
"gen-sources": "tsx scripts/gen-sources/index.ts",
"apply-sources": "tsx scripts/apply-sources.ts && eslint --fix 'data/rss.json'",
"gen-tags": "env-cmd tsx scripts/gen-tags.ts && eslint --fix 'data/rss.json'",
"lint-fix-scripts": "eslint --fix 'scripts/**/*.{js,jsx,ts,tsx}'",
"lint-fix-all": "next lint --fix",
"test": "tsx scripts/test.ts",
"postbuild": "echo 'testlzyzy' && next-sitemap && rm -rf .next/cache"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shuding/nextra-docs-template.git"
},
"author": "Shu Ding <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/shuding/nextra-docs-template/issues"
},
"homepage": "https://github.com/shuding/nextra-docs-template#readme",
"dependencies": {
"cheerio": "1.0.0-rc.12",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"dayjs": "^1.11.10",
"https-proxy-agent": "^7.0.2",
"lodash": "^4.17.21",
"lucide-react": "^0.311.0",
"minimist": "^1.2.8",
"next": "13.4.19",
"nextra": "^2.13.2",
"nextra-theme-docs": "^2.13.2",
"node-fetch": "^3.3.2",
"openai": "^4.26.0",
"p-limit": "^4.0.0",
"pino": "^8.17.2",
"pino-pretty": "^10.3.1",
"posthog-js": "^1.100.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rss-parser": "^3.13.0",
"tailwind-merge": "^2.2.0",
"tailwindcss-animate": "^1.0.7",
"validator": "^13.11.0",
"yaml": "^2.3.4"
},
"devDependencies": {
"@types/lodash": "^4.14.202",
"@types/node": "18.11.10",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"autoprefixer": "^10.4.16",
"env-cmd": "^10.1.0",
"eslint": "^8.56.0",
"eslint-config-next": "^14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"next-sitemap": "^4.2.3",
"postcss": "^8.4.33",
"prettier": "^3.2.4",
"tailwindcss": "^3.4.1",
"tsx": "^4.7.0",
"typescript": "^4.9.3"
}
}