forked from iamspathan/id-assertion-authz-node-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.49 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 2.49 KB
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
{
"name": "id-assertion-authz-node-example",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"postinstall": "yarn workspaces foreach -A run postinstall",
"dev:todo": "yarn workspace todo0 dev",
"dev:wiki": "yarn workspace wiki0 dev",
"auth:todo": "yarn workspace authorization-server server:todo",
"auth:wiki": "yarn workspace authorization-server server:wiki",
"start:todo0": "yarn workspace todo0 start",
"start:wiki0": "yarn workspace wiki0 start",
"build:todo": "yarn workspace todo0 build",
"build:wiki": "yarn workspace wiki0 build",
"resetdb": "yarn workspace wiki0 resetdb && yarn workspace todo0 resetdb",
"migratedb": "yarn workspace wiki0 migratedb && yarn workspace todo0 migratedb",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --cache",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"setup:env": "node scripts/setup-env.js",
"bootstrap": "node scripts/bootstrap.js",
"dev:all": "concurrently --names \"wiki,auth-wiki,todo,auth-todo\" --prefix-colors \"blue,magenta,green,red\" --output-path logs/dev-all.log \"yarn dev:wiki\" \"yarn auth:wiki\" \"yarn dev:todo\" \"yarn auth:todo\"",
"dev:mcp": "concurrently --names \"mcp,auth-wiki,todo,auth-todo\" --prefix-colors \"cyan,magenta,green,red\" --output-path logs/dev-mcp.log \"yarn dev:mcp-bedrock-client\" \"yarn auth:wiki\" \"yarn dev:todo\" \"yarn auth:todo\"",
"open:apps": "node scripts/open-apps.js",
"build:mcp-bedrock-client": "yarn workspace mcp-bedrock-client build",
"dev:mcp-bedrock-client": "yarn workspace mcp-bedrock-client dev",
"start:mcp-bedrock-client": "yarn workspace mcp-bedrock-client start",
"clean:mcp-bedrock-client": "yarn workspace mcp-bedrock-client clean"
},
"author": "",
"license": "ISC",
"type": "module",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^8.10.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.1",
"nodemon": "^3.1.10",
"prettier": "^3.6.2",
"tsx": "^4.20.3"
},
"workspaces": [
"./packages/*"
],
"packageManager": "yarn@4.2.2"
}