-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.75 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
{
"name": "moleculer-middlewares",
"description": "Monorepo Root for Moleculer Middlewares",
"private": true,
"scripts": {
"build": "turbo run build --concurrency=${TURBO_CONCURRENCY:-90%} --no-daemon",
"coverage": "turbo run coverage --concurrency=1 --log-prefix=none --no-daemon",
"lint": "turbo run lint --concurrency=${TURBO_CONCURRENCY:-90%} --no-daemon",
"lint-cycle": "turbo run lint-cycle --concurrency=${TURBO_CONCURRENCY:-90%} --no-daemon",
"prettier": "turbo run prettier --concurrency=${TURBO_CONCURRENCY:-90%} --global-deps=\".prettierrc.json\" --no-daemon",
"unit": "turbo run unit --concurrency=1 --log-prefix=none --no-daemon",
"test": "concurrently --max-processes 1 pnpm:typecheck pnpm:prettier pnpm:lint pnpm:lint-cycle pnpm:coverage",
"typecheck": "turbo run typecheck --concurrency=${TURBO_CONCURRENCY:-90%} --no-daemon"
},
"repository": "github:moleculerjs/moleculer-middlewares",
"keywords": [
"moleculer",
"MoleculerJS",
"middleware"
],
"author": "MoleculerJS",
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"packageManager": "[email protected]",
"devDependencies": {
"@types/eslint": "8.44.0",
"@types/jest": "29.5.3",
"@types/node": "16.18.38",
"@typescript-eslint/eslint-plugin": "6.0.0",
"@typescript-eslint/parser": "6.0.0",
"concurrently": "8.2.0",
"dpdm": "3.13.1",
"eslint": "8.45.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest": "27.2.3",
"eslint-plugin-unicorn": "48.0.0",
"jest": "29.6.1",
"prettier": "3.0.0",
"ts-jest": "29.1.1",
"turbo": "1.10.7",
"typescript": "5.1.6"
}
}