-
Notifications
You must be signed in to change notification settings - Fork 314
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.92 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
{
"private": true,
"name": "@thunderid/root",
"version": "0.0.0",
"description": "Root workspace for ⚡️ ThunderID",
"author": "WSO2",
"license": "Apache-2.0",
"type": "module",
"homepage": "https://github.com/thunder-id/thunderid/tree/main",
"bugs": {
"url": "https://github.com/thunder-id/thunderid/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/thunder-id/thunderid"
},
"keywords": [
"thunderid",
"workspace",
"wso2"
],
"packageManager": "pnpm@11.5.0",
"scripts": {
"build": "nx run-many --target=build --all",
"build:docs": "nx run @thunderid/docs:build",
"build:frontend": "nx run-many --target=build --projects=frontend/**",
"build:sdks": "nx run-many --target=build --projects=sdks/**",
"build:tools": "nx run-many --target=build --projects=tools/**",
"clean": "nx run-many --target=clean --all && rimraf node_modules",
"dev:docs": "pnpm --dir docs run dev",
"dev:frontend": "pnpm --dir frontend run dev",
"format:check": "prettier --check --cache --config frontend/prettier.config.js --ignore-path frontend/.prettierignore frontend",
"format:fix": "prettier --write --cache --config frontend/prettier.config.js --ignore-path frontend/.prettierignore frontend",
"lint": "nx run-many --target=lint --all --parallel --exclude=sdks/**,tests/**",
"lint:fix": "nx run-many --target=lint:fix --all --parallel --exclude=sdks/**,tests/**",
"test": "nx run-many --target=test --all --parallel --exclude=sdks/**,tools/**,tests/**",
"test:e2e-prepare": "pnpm exec playwright install --with-deps",
"test:e2e": "nx run @thunderid/e2e:test",
"typecheck": "nx run-many --target=typecheck --all --parallel"
},
"devDependencies": {
"nx": "catalog:",
"playwright": "catalog:",
"prettier": "catalog:",
"rimraf": "catalog:",
"eslint": "catalog:",
"tslib": "catalog:",
"typescript": "catalog:"
}
}