-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.98 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.98 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
56
{
"private": true,
"name": "@asgardeo/javascript-workspace",
"version": "0.0.0",
"description": "Workspace to hold the Asgardeo JavaScript SDKs.",
"author": "WSO2",
"license": "Apache-2.0",
"homepage": "https://github.com/asgardeo/javascript#readme",
"bugs": {
"url": "https://github.com/asgardeo/javascript/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/asgardeo/javascript"
},
"keywords": [
"asgardeo",
"javascript",
"workspace"
],
"scripts": {
"build": "nx run-many --target=build --all",
"build:packages": "nx run-many --target=build --projects=packages/*",
"build:samples": "nx run-many --target=build --projects=samples/*",
"fix:lint": "nx run-many --target=fix:lint --all --parallel",
"lint": "nx run-many --target=lint --all --parallel",
"publish:packages": "changeset publish",
"test": "nx run-many --target=test --all --parallel",
"typecheck": "nx run-many --target=typecheck --all --parallel",
"version:packages": "changeset version && pnpm install --lockfile-only",
"aggregate-changelogs": "node scripts/aggregate-changelogs.js",
"e2e": "bash e2e/scripts/run-e2e.sh",
"e2e:docker:up": "docker compose -f e2e/docker-compose.yml up -d",
"e2e:docker:down": "docker compose -f e2e/docker-compose.yml down -v",
"e2e:docker:up:is": "docker compose -f e2e/docker-compose.yml up -d wso2is",
"e2e:docker:up:thunder": "docker compose -f e2e/docker-compose.yml up -d thunder",
"e2e:install": "playwright install chromium",
"symlink": "node scripts/symlink.js"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.1",
"@changesets/cli": "2.29.8",
"@playwright/test": "^1.58.2",
"@wso2/eslint-plugin": "catalog:",
"@wso2/prettier-config": "catalog:",
"eslint": "8.57.0",
"nx": "20.8.1",
"prettier": "2.6.2",
"tsx": "^4.21.0",
"typescript": "5.7.2",
"undici": "^7.21.0"
},
"publishConfig": {
"access": "restricted"
}
}