-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.2 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
{
"name": "@reflet/monorepo",
"version": "0.0.0",
"author": "Jeremy Bensimon",
"license": "MIT",
"private": true,
"repository": "github:jeremyben/reflet",
"workspaces": [
"express",
"express-middlewares",
"benchmarks",
"mongoose",
"http",
"cron"
],
"engines": {
"node": ">=14"
},
"engineStrict": true,
"scripts": {
"bootstrap": "yarn install --force",
"test": "lerna run test --stream",
"build": "lerna run build --stream",
"create-package": "ts-node -T ./create-package.ts",
"release:version": "lerna version --conventional-graduate",
"release:publish": "lerna publish from-package",
"release:version:next": "lerna version --conventional-prerelease --preid next --allow-branch next --no-changelog --no-git-tag-version --ignore-scripts && git commit -am \"chore(release): next\"",
"release:publish:next": "lerna publish from-package --dist-tag next --allow-branch next"
},
"devDependencies": {
"@microsoft/tsdoc": "^0.13.2",
"@types/jest": "^29.5.2",
"@types/node": "^16.11.7",
"@types/supertest": "^2.0.12",
"jest": "^29.5.0",
"lerna": "^7.1.4",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tsc-prog": "^2.3.0",
"typescript": "^4.9.5"
}
}