-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
32 lines (32 loc) · 1002 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
{
"private": true,
"type": "module",
"workspaces": [
"packages/scopes",
"packages/authx",
"packages/http-proxy-client",
"packages/http-proxy-web",
"packages/http-proxy-resource",
"packages/interface",
"packages/strategy-email",
"packages/strategy-openid",
"packages/strategy-password",
"packages/strategy-saml",
"packages/tools",
"packages/example"
],
"scripts": {
"build": "lerna run build",
"format": "lerna run --parallel format && npx prettier --list-different --write '*.{json,yml,md,ts,html,css}'",
"lint": "lerna run --parallel lint && npx prettier -c '*.{json,yml,md,ts,html,css}'",
"start": "lerna run start --scope=@authx/example",
"test": "lerna run --parallel test",
"update": "lerna exec --parallel -- npx ncu -u && npx npm-check-updates -u && npm i && npm update"
},
"devDependencies": {
"lerna": "^8.1.2",
"npm-check-updates": "^16.14.20",
"prettier": "^3.2.5"
},
"dependencies": {}
}