-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.23 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
{
"name": "univer-typedoc",
"type": "module",
"version": "0.4.2",
"private": false,
"scripts": {
"prepare": "simple-git-hooks",
"typedoc": "cd submodules/univer && pnpm i && cd ../../ && node ./scripts/pre-typedoc.mjs && typedoc && node ./scripts/post-typedoc.mjs",
"dev": "next dev",
"build": "NODE_OPTIONS=--max-old-space-size=12288 next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"next": "14.2.5",
"nextra": "^2.13.4",
"nextra-theme-docs": "^2.13.4",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@antfu/eslint-config": "^2.22.3",
"@eslint-react/eslint-plugin": "^1.5.26",
"@types/node": "^20.14.10",
"autoprefixer": "^10.4.19",
"eslint": "^9.7.0",
"eslint-plugin-readable-tailwind": "^1.5.2",
"fs-extra": "^11.2.0",
"lint-staged": "^15.2.7",
"postcss": "^8.4.39",
"sharp": "^0.33.4",
"simple-git-hooks": "^2.11.1",
"tailwindcss": "^3.4.5",
"typedoc": "^0.26.4",
"typedoc-plugin-markdown": "^4.2.1",
"typescript": "^5.5.3"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"!submodules/*": "eslint"
}
}