-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.45 KB
/
package.json
File metadata and controls
59 lines (59 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
{
"private": true,
"scripts": {
"build": "sh ./scripts/build.sh",
"clean": "rimraf ./packages/*/lib ./packages/*/es ./packages/*/dist ./packages/*/build",
"clean:lib": "rimraf ./node_modules",
"lint": "f2elint scan -q -i ./packages/*/src",
"lint:fix": "f2elint fix -i ./packages/*/src",
"lint:modules": "f2elint scan -q -i ./modules/*/src",
"lint:modules:fix": "f2elint fix -i ./modules/*/src",
"pub": "pnpm run watchdog:build && lerna publish patch --yes --force-publish --exact --no-changelog",
"pub:minor": "pnpm run watchdog:build && lerna publish minor --yes --force-publish --exact --no-changelog",
"pub:major": "pnpm run watchdog:build && lerna publish major --yes --force-publish --exact --no-changelog",
"pub:premajor": "pnpm run watchdog:build && lerna publish premajor --force-publish --exact --dist-tag beta --preid beta --no-changelog",
"pub:preminor": "pnpm run watchdog:build && lerna publish preminor --force-publish --exact --dist-tag beta --preid beta --no-changelog",
"pub:prepatch": "pnpm run watchdog:build && lerna publish prepatch --force-publish --exact --dist-tag beta --preid beta --no-changelog",
"pub:prerelease": "pnpm run watchdog:build && lerna publish prerelease --yes --force-publish --exact --dist-tag beta --preid beta --no-changelog",
"setup": "node ./scripts/setup.js",
"start": "node ./scripts/start.js",
"test": "vitest",
"test:ui": "vitest --ui",
"test:cov": "vitest run --coverage",
"watchdog:build": "node ./scripts/watchdog.js"
},
"husky": {
"hooks": {
"pre-commit": "f2elint commit-file-scan",
"commit-msg": "f2elint commit-msg-scan"
}
},
"devDependencies": {
"@lerna-lite/core": "^3.10.1",
"@lerna-lite/publish": "^3.10.1",
"@lerna-lite/run": "^3.10.1",
"@lerna-lite/version": "^3.10.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.1",
"@types/react-router": "5.1.18",
"@vitejs/plugin-react-swc": "3.7.2",
"@vitest/ui": "2.1.8",
"babel-jest": "^26.5.2",
"del": "^6.1.1",
"execa": "^5.1.1",
"f2elint": "^4.8.0",
"gulp": "^4.0.2",
"husky": "^7.0.4",
"jsdom": "^25.0.1",
"rimraf": "^6.0.1",
"sass-embedded": "^1.83.0",
"typescript": "^5.7.2",
"vite": "^6.0.1",
"vite-plugin-dts": "^4.3.0",
"vitest": "^2.1.8"
},
"resolutions": {
"react-error-overlay": "6.0.9"
},
"repository": "[email protected]:fe-lce/lowcode-engine-react.git"
}