-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.85 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.85 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
{
"name": "@fecommunity/reactpress-theme-starter",
"version": "1.0.0-beta.0",
"description": "ReactPress 博客主题 Starter:Tailwind CSS + Next.js App Router,对接 toolkit 动态内容",
"license": "MIT",
"keywords": [
"reactpress",
"nextjs",
"blog",
"theme",
"tailwindcss",
"headless-cms"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fecommunity/reactpress-theme-starter.git"
},
"bugs": {
"url": "https://github.com/fecommunity/reactpress-theme-starter/issues"
},
"homepage": "https://github.com/fecommunity/reactpress-theme-starter#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"app",
"components",
"lib",
"public",
"scripts",
"theme.json",
"theme.manifest.schema.json",
"next.config.js",
"postcss.config.js",
"prettier.config.js",
"eslint.config.mjs",
"tsconfig.json",
"svg.d.ts",
"vercel.json",
".env.example"
],
"packageManager": "pnpm@9.15.9",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "node scripts/dev.mjs",
"dev:mock": "cross-env REACTPRESS_MOCK_API=1 node scripts/dev.mjs",
"clean": "rm -rf .next .next-dev",
"build": "cross-env INIT_CWD=$PWD next build",
"build:mock": "node scripts/build-mock.mjs",
"build:ci": "pnpm clean && cross-env INIT_CWD=$PWD next build",
"start": "cross-env INIT_CWD=$PWD next start -p 3001",
"start:mock": "node scripts/start-mock.mjs",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check": "pnpm run lint:check && pnpm run format:check",
"postinstall": "node scripts/verify-toolkit.mjs && node scripts/ensure-env.mjs"
},
"dependencies": {
"@fecommunity/reactpress-toolkit": "^3.1.0",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/typography": "^0.5.19",
"cross-env": "^10.1.0",
"highlight.js": "^9.18.5",
"next": "15.5.12",
"nprogress": "^0.2.0",
"postcss": "^8.5.6",
"react": "19.2.4",
"react-dom": "19.2.4",
"tailwindcss": "^4.1.18",
"viewerjs": "^1.5.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.18.0",
"@svgr/webpack": "^8.1.0",
"@types/node": "^20.17.0",
"@types/react": "^19.2.13",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"eslint": "^9.18.0",
"eslint-config-next": "15.5.12",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.3.0",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"typescript": "^5.9.3"
}
}