-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.85 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.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
{
"name": "react-dsfr-tiptap-monorepo",
"private": true,
"version": "0.0.0",
"type": "module",
"workspaces": [
"examples",
"packages/*"
],
"scripts": {
"build": "npm run build -w packages/react-dsfr-tiptap",
"build:examples": "npm run build:pages --w examples",
"test": "npm run test -w packages/react-dsfr-tiptap",
"examples": "npm run dev -w examples",
"prepare": "husky",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"check-types": "npm run check-types --ws",
"release:major": "npm run changelog -w packages/react-dsfr-tiptap -- -M && npm run release",
"release:minor": "npm run changelog -w packages/react-dsfr-tiptap -- -m && npm run release",
"release:patch": "npm run changelog -w packages/react-dsfr-tiptap -- -p && npm run release",
"release": "git add */CHANGELOG.md && git commit -m 'docs: update CHANGELOG.md' && npm run version",
"version": "lerna version --no-private"
},
"devDependencies": {
"@commitlint/cli": "^20.0.0",
"@commitlint/config-conventional": "^20.0.0",
"@eslint/compat": "^1.2.4",
"@eslint/js": "^9.17.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.16",
"husky": "^9.1.7",
"lerna": "^8.1.9",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"typescript": "~5.9.0",
"typescript-eslint": "^8.18.1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*": "prettier --write --ignore-unknown --no-error-on-unmatched-pattern",
"*.{js,ts,jsx,tsx}": "eslint"
}
}