-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 880 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 880 Bytes
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
{
"name": "oidc-provider",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "turbo run dev --no-cache --parallel --continue",
"build": "turbo run build",
"preview": "turbo run preview",
"test": "turbo run test",
"test:coverage": "turbo run test:coverage",
"test:watch": "turbo run test:watch",
"clean": "turbo run clean && rm -rf node_modules --continue",
"lint": "turbo run lint --parallel",
"lint:fix": "turbo run lint:fix --parallel",
"format": "turbo run format --parallel",
"format:check": "turbo run format:check --parallel",
"format:fix": "turbo run format:fix --parallel",
"license:check": "turbo run license:check --parallel"
},
"devDependencies": {
"turbo": "2.7.5"
},
"engines": {
"npm": ">=10.0.0",
"node": ">=22.0.0"
},
"packageManager": "yarn@1.22.18"
}