forked from jaywcjlove/tsbb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.21 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
{
"private": true,
"scripts": {
"prepare": "husky install",
"build:template": "lerna exec --scope @template/* -- npm run build",
"build:create-tsbb": "lerna exec --scope create-tsbb -- npm run build",
"build": "lerna exec --scope @tsbb/* --scope tsbb -- npm run build",
"version": "lerna version --exact --force-publish --no-push --no-git-tag-version",
"type-check": "lerna exec \"tsc --noEmit\" --scope create-tsbb --scope tsbb --scope @tsbb/* --stream",
"prettier": "prettier --write '**/*.{js,jsx,tsx,ts,less,md,json}'",
"clean": "lerna clean --yes"
},
"repository": {
"type": "git",
"url": "https://github.com/jaywcjlove/tsbb.git"
},
"engines": {
"node": ">=16.0.0"
},
"workspaces": [
"packages/*",
"examples/*"
],
"lint-staged": {
"*.{js,jsx,ts,tsx,md,json}": [
"prettier --write"
]
},
"devDependencies": {
"husky": "^8.0.3",
"lerna": "^6.5.1",
"lint-staged": "^13.2.0",
"node-ts": "^5.1.2",
"prettier": "^2.8.4",
"pretty-quick": "~3.1.3",
"typescript": "^5.0.0",
"jest": "^29.5.0",
"jest-watch-typeahead": "^2.2.2",
"jest-environment-jsdom": "~29.5.0",
"jest-environment-node": "^29.5.0"
}
}