-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1013 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
37
38
39
40
{
"private": true,
"version": "0.5.6",
"scripts": {
"prepare": "husky",
"start": "npm run start --workspace=core",
"watch": "npm run watch --workspace=core",
"build": "lerna exec --scope @examples/* --scope typenexus -- npm run build",
"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"
},
"repository": {
"type": "git",
"url": "https://github.com/jaywcjlove/typenexus.git"
},
"engines": {
"node": ">=16.0.0"
},
"workspaces": [
"core",
"examples/**"
],
"lint-staged": {
"*.{js,jsx,ts,tsx,md,json}": [
"prettier --write"
]
},
"devDependencies": {
"@types/supertest": "^6.0.2",
"husky": "^9.1.7",
"lerna": "^8.0.0",
"lint-staged": "^15.0.0",
"node-ts": "^6.0.0",
"prettier": "^3.0.0",
"supertest": "^7.0.0",
"supertest-session": "^5.0.0",
"tsbb": "^4.1.5"
}
}