-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.7 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
{
"name": "root",
"private": true,
"scripts": {
"⬇️⬇️⬇️⬇️⬇️ package ⬇️⬇️⬇️⬇️⬇️": "▼▼▼▼▼ package ▼▼▼▼▼",
"watch": "npm run-script watch --workspace react-code-preview-layout",
"build": "npm run-script build --workspace react-code-preview-layout",
"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",
"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"
},
"devDependencies": {
"react": "~18.2.0",
"react-dom": "~18.2.0",
"@types/react": "~18.2.0",
"@types/react-dom": "~18.2.0",
"tsbb": "^4.1.14",
"husky": "~9.0.0",
"lint-staged": "^15.0.0",
"prettier": "^3.0.0",
"lerna": "^8.0.0",
"pretty-quick": "~4.0.0",
"react-test-renderer": "~18.2.0"
},
"workspaces": [
"core",
"website"
],
"engines": {
"node": ">=16.0.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,less,md,json}": [
"prettier --write"
]
},
"jest": {
"collectCoverageFrom": [
"<rootDir>/core/src/**/*.{js,jsx,ts,tsx}"
],
"testMatch": [
"<rootDir>/test/*.{ts,tsx}"
],
"transformIgnorePatterns": [
"<rootDir>/node_modules/?!(.*)"
]
}
}