-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.52 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
{
"$schema": "https://json.schemastore.org/package.json",
"private": true,
"scripts": {
"⬇️⬇️⬇️⬇️⬇️ package ⬇️⬇️⬇️⬇️⬇️": "▼▼▼▼▼ package ▼▼▼▼▼",
"watch": "npm run-script watch --workspace markdown-react-code-preview-loader",
"build": "npm run-script build --workspace markdown-react-code-preview-loader",
"doc": "npm run-script build --workspace website",
"start": "npm run-script start --workspace website",
"⬆️⬆️⬆️⬆️⬆️ 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 markdown-react-code-preview-loader --scope website",
"clean": "lerna clean --yes"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,less,md,json}": [
"prettier --write"
]
},
"workspaces": [
"core",
"website"
],
"jest": {
"collectCoverageFrom": [
"<rootDir>/core/src/**/*.{js,jsx,ts,tsx}"
],
"testMatch": [
"<rootDir>/test/*.{ts,tsx}"
]
},
"license": "MIT",
"devDependencies": {
"husky": "~7.0.4",
"lerna": "~4.0.0",
"lint-staged": "~12.3.4",
"prettier": "~2.5.1",
"pretty-quick": "~3.1.3",
"tsbb": "~3.7.0"
}
}