-
Notifications
You must be signed in to change notification settings - Fork 577
/
package.json
75 lines (75 loc) · 2.66 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "midway_project",
"description": "a web framework for complex Node.js application",
"version": "1.0.0",
"devDependencies": {
"@nrwl/tao": "16.10.0",
"@types/jest": "29.5.14",
"@types/node": "22.9.0",
"@vercel/ncc": "0.38.2",
"autocannon": "7.15.0",
"@babel/plugin-proposal-decorators": "7.25.9",
"jest": "29.7.0",
"lerna": "7.4.2",
"lerna-changelog": "2.2.0",
"madge": "6.1.0",
"mwts": "1.3.0",
"tree-kill": "1.2.2",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typedoc": "^0.26.0",
"typescript": "4.9.5",
"why-is-node-running": "2.3.0",
"zx": "7.2.3"
},
"scripts": {
"install_npm": "sh scripts/install_npm.sh",
"test": "lerna run test",
"link": "lerna run link",
"cov": "lerna run cov --concurrency 2 --stream",
"test_legacy": "lerna run test --concurrency 2 --stream --scope={$(lerna list --all --parseable --toposort --long | grep packages-legacy | sed -E \"s/[^:]+:([^:]+).+/\\1/\" | paste -d , -s -)}",
"ci": "npm run build && npm run cov",
"purge": "npm run clean && rm -rf node_modules",
"reset": "npm run purge && npm i && npm run ci",
"canary": "npm run build && lerna publish major --canary --preid alpha --dist-tag alpha",
"beta": "sh scripts/publish.sh --npm-tag beta --force-publish=*",
"next": "sh scripts/publish.sh --npm-tag next",
"release": "rm -f ./packages/.DS* && sh scripts/publish.sh",
"bootstrap": "rm -f ./packages/.DS* && lerna bootstrap --concurrency 4",
"clean": "lerna clean --yes && rm -rf ./packages/**/package-lock.json && rm -f package-lock.json",
"build": "sh scripts/build.sh",
"authors": "git log --format='%aN <%aE>' | sort -u > AUTHORS",
"version": "node ./scripts/generate_rollback.js && node ./scripts/generate_version.js && node ./scripts/generate_changelog.js && git add .",
"lint": "lerna exec mwts check",
"lint:cycle": "lerna exec --ignore @midwayjs/version --ignore @midwayjs/faas-typings --ignore @midwayjs/*-layer --ignore @midwayjs/core -- madge --circular --extensions ts src",
"lint:fix": "lerna exec mwts fix",
"changelog": "lerna-changelog"
},
"keywords": [
"container",
"runtime",
"cluster",
"service",
"application",
"webframework"
],
"homepage": "http://github.com/midwayjs/midway",
"repository": {
"type": "git",
"url": "https://github.com/midwayjs/midway.git"
},
"engines": {
"node": ">= 14.0.0"
},
"license": "MIT",
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/midway"
},
"workspaces": [
"packages/*",
"packages-serverless/*",
"packages-legacy/*",
"packages-resource/*"
]
}