-
Notifications
You must be signed in to change notification settings - Fork 346
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.82 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
{
"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"
],
"scripts": {
"build": "turbo run build",
"build:docs": "turbo run build --filter=@thunderid/docs",
"build:frontend": "turbo run build --filter=./frontend/**",
"build:tools": "turbo run build --filter=./tools/*",
"clean": "turbo run clean && rimraf --glob node_modules .turbo \"**/.turbo\"",
"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": "turbo run lint --filter=!./tests/**",
"lint:fix": "turbo run lint:fix --filter=!./tests/**",
"test": "turbo run test --filter=!./tools/** --filter=!./tests/** --concurrency=3",
"test:e2e-prepare": "pnpm exec playwright install --with-deps",
"test:e2e": "turbo run test --filter=@thunderid/e2e",
"typecheck": "turbo run typecheck"
},
"devDependencies": {
"turbo": "catalog:",
"playwright": "catalog:",
"prettier": "catalog:",
"rimraf": "catalog:",
"eslint": "catalog:",
"tslib": "catalog:",
"typescript": "catalog:"
},
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "11.13.1"
}
}
}