-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.27 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
{
"private": true,
"scripts": {
"prepare": "husky install",
"-----↓↓↓↓↓↓↓↓↓↓↓↓↓↓-----": "----------",
"build:bundle": "lerna exec \"npm run build:bundle\" --scope @template/bundle",
"build:bundle:node": "lerna exec \"npm run build\" --scope @template/bundle-node",
"build:bundle:action": "lerna exec \"npm run bundle\" --scope @template/github-actions",
"-----↑↑↑↑↑↑↑↑↑↑↑↑↑↑-----": "----------",
"watch": "lerna exec \"tsbb watch\" --scope @kkt/ncc",
"build": "lerna exec \"tsbb build\" --scope @kkt/ncc",
"version": "lerna version --no-changelog --no-git-tag-version --no-push",
"prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
"updated": "lerna updated",
"remove": "lerna exec \"rm -rf node_modules build package-lock.json\"",
"clean": "lerna clean --yes && npm run remove"
},
"engines": {
"node": ">=16.0.0"
},
"lint-staged": {
"*.{js,jsx,tsx,ts,less,md,json}": "prettier --write"
},
"workspaces": [
"examples/**",
"core"
],
"devDependencies": {
"@kkt/less-modules": "^7.4.9",
"ajv": "^8.8.0",
"husky": "^8.0.3",
"lerna": "^8.0.0",
"lint-staged": "^14.0.0",
"prettier": "^3.0.0",
"tsbb": "^4.0.5"
}
}