-
Notifications
You must be signed in to change notification settings - Fork 198
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) Β· 2.29 KB
/
package.json
File metadata and controls
81 lines (81 loc) Β· 2.29 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
{
"name": "DocFlow",
"version": "1.0.0",
"private": true,
"description": "AI-powered docs βοΈ Built with Tiptap & Next.js β real-time collab β‘, smart writing π€, and a flexible plugin system π",
"author": "Moment",
"license": "MIT",
"homepage": "https://github.com/xun082/DocFlow#readme",
"repository": {
"type": "git",
"url": "https://github.com/xun082/DocFlow.git"
},
"bugs": {
"url": "https://github.com/xun082/DocFlow/issues"
},
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"type-check": "turbo run type-check",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,mjs}\"",
"format:ci": "prettier --check \"**/*.{ts,tsx,mjs}\"",
"test": "turbo run test",
"clean": "turbo run clean && rm -rf node_modules .turbo",
"prepare": "husky",
"commit": "git-cz"
},
"engines": {
"node": ">=24",
"pnpm": ">=10.28.2"
},
"engineStrict": true,
"packageManager": "pnpm@10.28.2",
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@eslint/eslintrc": "^3.3.1",
"@next/eslint-plugin-next": "16.1.5",
"@playwright/test": "^1.51.1",
"@tailwindcss/postcss": "^4.1.7",
"@tailwindcss/typography": "^0.5.16",
"@types/node": "22.15.18",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"autoprefixer": "10.4.21",
"commitizen": "^4.3.1",
"cz-git": "^1.11.1",
"eslint": "9.27.0",
"eslint-config-next": "16.1.5",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.4.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-tailwindcss": "^3.18.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"postcss": "8.5.3",
"postcss-nesting": "^13.0.1",
"prettier": "^3.5.3",
"tailwindcss": "4.1.7",
"turbo": "^2.8.1",
"typescript": "5.8.3",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4"
},
"lint-staged": {
"*.{ts,tsx,mjs}": [
"eslint --fix"
],
"*.{tsx,ts}": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
}
}