-
-
Notifications
You must be signed in to change notification settings - Fork 169
/
Copy pathpackage.json
82 lines (82 loc) · 2.28 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
82
{
"private": true,
"scripts": {
"⬇️⬇️⬇️⬇️⬇️ package ⬇️⬇️⬇️⬇️⬇️": "▼▼▼▼▼ package ▼▼▼▼▼",
"watch": "npm run-script watch --workspace @uiw/react-md-editor",
"build": "npm run-script build --workspace @uiw/react-md-editor",
"doc": "npm run-script build --workspace www",
"start": "npm run-script start --workspace www",
"⬆️⬆️⬆️⬆️⬆️ package ⬆️⬆️⬆️⬆️⬆️": "▲▲▲▲▲ package ▲▲▲▲▲",
"test": "tsbb test",
"coverage": "tsbb test --coverage --bail",
"prepare": "husky install",
"version": "lerna version --exact --force-publish --no-push --no-git-tag-version",
"prettier": "prettier --write '**/*.{js,jsx,tsx,ts,less,md,json}'",
"remove": "npm run clean && lerna exec \"rm -rf package-lock.json\" --scope react-code-preview-layout --scope website",
"clean": "lerna clean --yes"
},
"repository": {
"type": "git",
"url": "https://github.com/uiwjs/react-md-editor"
},
"license": "MIT",
"devDependencies": {
"@kkt/less-modules": "^7.4.9",
"@kkt/ncc": "^1.0.14",
"@types/react-test-renderer": "~18.0.0",
"@types/react": "~18.2.0",
"@types/react-dom": "~18.2.0",
"compile-less-cli": "~1.9.0",
"husky": "~8.0.0",
"kkt": "^7.4.9",
"lerna": "^8.0.0",
"lint-staged": "^15.1.0",
"prettier": "^3.0.0",
"react-test-renderer": "~18.2.0",
"tsbb": "^4.1.5",
"jest": "^29.5.0",
"jest-watch-typeahead": "^2.2.2",
"jest-environment-jsdom": "^29.5.0",
"jest-environment-node": "^29.5.0",
"react": "~18.2.0",
"react-dom": "~18.2.0"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"jest": {
"collectCoverageFrom": [
"<rootDir>/core/src/**/*.{ts,tsx}"
],
"transformIgnorePatterns": [
"<rootDir>/node_modules/?!(.*)"
]
},
"workspaces": [
"core",
"example/**",
"www"
],
"engines": {
"node": ">=16.0.0"
},
"keywords": [
"react",
"editor",
"md-editor",
"markdown",
"react-markdown",
"react-md-editor",
"react-markdown-editor",
"markdown-editor",
"md",
"uiw",
"uiwjs",
"code"
]
}