-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.41 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
{
"type": "module",
"workspaces": [
"devtools",
"packages/operation-result",
"packages/loader-builder",
"packages/widget-webpack-utils",
"packages/vite-plugins/*",
"packages/platform",
"packages/widget-consumer-react-utils",
"packages/widget-playground",
"packages/*",
"tests/*"
],
"private": true,
"scripts": {
"build": "npm run build --workspaces --if-present",
"postinstall": "npx simple-git-hooks",
"prepare-publish": "lerna version --conventional-commits --changelog-preset conventionalcommits",
"test": "npm run test --workspaces --if-present",
"version": "lerna exec \"npm install --ignore-scripts --package-lock-only --no-audit\" && git add package-lock.json"
},
"author": "original001",
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"conventional-changelog-conventionalcommits": "^7.0.2",
"lerna": "^7.3.1",
"nano-staged": "^0.8.0",
"prettier": "^3.0.0",
"simple-git-hooks": "^2.8.1"
},
"engines": {
"node": ">=18"
},
"nano-staged": {
"*.{js,jsx,ts,tsx}": "prettier --write"
},
"simple-git-hooks": {
"pre-commit": "./node_modules/.bin/nano-staged",
"commit-msg": "./node_modules/.bin/commitlint --edit \"$@\""
},
"overrides": {
"rollup-plugin-sourcemaps": {
"rollup": "^4"
}
}
}