-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.45 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.45 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
{
"name": "@contentful/rich-text",
"private": true,
"description": "A monorepo for all NPM packages related to Rich Text",
"author": "Contentful GmbH",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/contentful/rich-text.git"
},
"engines": {
"node": ">=22"
},
"scripts": {
"benchmark": "ts-node -O '{\"module\": \"commonjs\"}' bin/benchmark",
"build": "lerna run build",
"commit": "git-cz",
"clean": "lerna exec 'rm -rf node_modules/ dist/ && npm prune' && rm -rf node_modules/ && npm prune",
"lint": "eslint ./ --ext .ts,.tsx",
"lerna": "lerna",
"prettier": "prettier './**/*.{js,jsx,ts,tsx,md,mdx}' --write",
"prettier:check": "prettier --check '**/*.{jsx,js,ts,tsx,md,mdx}'",
"prebuild": "lerna run prebuild",
"start": "lerna run start",
"test": "lerna run test",
"prepare": "husky"
},
"workspaces": [
"packages/*"
],
"lint-staged": {
"**/*.{jsx,js,ts,tsx,md,mdx}": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/git-cz"
}
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"devDependencies": {
"@commitlint/cli": "20.3.1",
"@commitlint/config-conventional": "20.3.1",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "16.0.3",
"@rollup/plugin-swc": "0.4.0",
"@swc/core": "1.15.11",
"@swc/cli": "0.7.10",
"@swc/jest": "0.2.39",
"@types/benchmark": "^2.1.4",
"@types/jest": "30.0.0",
"@types/rollup-plugin-json": "^3.0.7",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"benchmark": "^2.1.4",
"commitizen": "4.3.1",
"contentful-management": "11.68.0",
"eslint": "8.57.1",
"eslint-plugin-jest": "29.12.1",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-import-helpers": "2.0.0",
"eslint-plugin-you-dont-need-lodash-underscore": "6.14.0",
"git-cz": "^4.9.0",
"husky": "^9.0.11",
"jest": "30.2.0",
"jest-junit": "16.0.0",
"lerna": "8.2.3",
"lint-staged": "16.2.7",
"pofile": "1.1.4",
"prettier": "^3.2.5",
"rimraf": "6.1.2",
"rollup": "^4.18.0",
"rollup-plugin-json": "^4.0.0",
"ts-node": "10.9.2",
"typescript": "5.9.3"
},
"resolutions": {
"react-is": "^19.2.3"
}
}