-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 839 Bytes
/
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
{
"private": true,
"scripts": {
"prepare": "husky",
"start": "npm run start --workspace=core",
"watch": "npm run watch --workspace=core",
"version": "lerna version --exact --force-publish --no-push --no-git-tag-version",
"prettier": "prettier --write '**/*.{js,jsx,tsx,ts,less,md,json}'",
"clean": "lerna clean --yes"
},
"keywords": [],
"author": "jaywcjlove",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jaywcjlove/auto-config-loader.git"
},
"engines": {
"node": ">=16.0.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md,json}": [
"prettier --write"
]
},
"workspaces": [
"core"
],
"dependencies": {
"husky": "^9.0.0",
"lerna": "^8.0.0",
"lint-staged": "^15.0.0",
"prettier": "^3.0.0",
"tsbb": "^4.1.5"
}
}