-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
45 lines (45 loc) · 1.31 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
{
"private": true,
"scripts": {
"prepare": "husky",
"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",
"test": "node packages/tsbb/lib/cli.js test",
"coverage": "node packages/tsbb/lib/cli.js test --coverage --bai"
},
"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"
]
},
"overrides": {
"typescript": "^5.1.3"
},
"devDependencies": {
"husky": "^9.0.11",
"lerna": "^8.0.0",
"lint-staged": "^15.0.0",
"prettier": "^3.0.3",
"typescript": "^5.1.3",
"jest": "^29.5.0",
"jest-watch-typeahead": "^2.2.2",
"jest-environment-jsdom": "^29.5.0",
"jest-environment-node": "^29.5.0"
}
}