-
Notifications
You must be signed in to change notification settings - Fork 110
/
package.json
81 lines (81 loc) · 2.31 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
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": "@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": ">=20"
},
"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": "19.5.0",
"@commitlint/config-conventional": "19.6.0",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "15.3.0",
"@types/benchmark": "^2.1.4",
"@types/jest": "29.5.14",
"@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",
"eslint": "8.57.1",
"eslint-plugin-jest": "28.8.3",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.0.0",
"eslint-plugin-import": "2.31.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": "29.7.0",
"jest-junit": "16.0.0",
"lerna": "8.1.9",
"lint-staged": "15.2.10",
"prettier": "^3.2.5",
"rimraf": "6.0.1",
"rollup": "^4.18.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-typescript2": "^0.36.0",
"ts-jest": "^29.1.2",
"ts-node": "10.9.2",
"typescript": "5.7.2"
},
"dependencies": {}
}