-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.51 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.51 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
{
"name": "flowing",
"private": true,
"version": "0.0.0",
"description": "An online editor😉",
"keywords": [
"rich text editor",
"markdown",
"helpful"
],
"author": "clyde",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lampeggiante/flowing.git"
},
"engines": {
"node": ">=20.18.2",
"pnpm": ">=9.4.0"
},
"scripts": {
"prepare": "husky",
"commitlint": "commitlint --config commitlint.config.mjs -e -V",
"gh-pages": "chmod +x scripts/gh-pages.sh && scripts/gh-pages.sh",
"dev:note": "pnpm --filter @flowing/note dev",
"dev:components": "pnpm --filter @flowing/components dev",
"build:icon": "pnpm --filter @flowing/icons build"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"prettier --write",
"eslint"
],
"*.{js,json,ts,tsx,css,scss,html}": [
"prettier --write"
]
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@ant-design/icons": "^5.3.7",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/compat": "^1.1.0",
"@eslint/js": "^9.6.0",
"dayjs": "^1.11.12",
"eslint": "^9.6.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.3",
"globals": "^15.8.0",
"husky": "^9.0.11",
"lerna": "^8.1.6",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"sass": "^1.77.7",
"typescript": "^5.5.3",
"typescript-eslint": "^7.16.0"
}
}