generated from cloudoperators/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 2.09 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 2.09 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
{
"private": true,
"displayName": "juno",
"name": "juno",
"scripts": {
"build": "turbo run build",
"dev": ". ./check-concurrency.sh && turbo run dev --concurrency=$CONCURRENCY",
"lint": "turbo run lint",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"check-licenses": "npx license-checker-rseidelsohn --summary --excludePackages='spawndamnit@3.0.1' --excludePrivatePackages --onlyAllow 'MIT;ISC;Apache-2.0;BSD-2-Clause;BSD-3-Clause;BSD-4-Clause;CC-BY-3.0;CC-BY-4.0;BlueOak-1.0.0;CC0-1.0;0BSD;Python-2.0;BSD*;Unlicense'",
"cleanVite": "find . -type f -name 'vite.config.*.timestamp-*' -ls -delete 2>/dev/null",
"clean": "pnpm run cleanVite && turbo run clean && rm -rf node_modules",
"clean:cache": "turbo run clean:cache && rm -rf .turbo && rm -rf node_modules/.cache/turbo",
"generate:package": "turbo gen workspace --type package --copy @cloudoperators/juno-package-template --name",
"generate:app": "turbo gen workspace --type app --copy @cloudoperators/juno-app-template --name",
"format": "prettier --log-level warn --write \"**/*.{js,jsx,ts,tsx,md}\"",
"check-format": "prettier --config ./.prettierrc --check \"**/*.{js,jsx,ts,tsx,md}\" ",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm run build && changeset publish",
"prepare": "husky",
"pkg:run": "turbo run dev --filter",
"pkg": "pnpm run pkg:run --",
"repair": "pnpm i -f",
"reinstall": "pnpm run clean && pnpm i",
"pre:push": "turbo run lint typecheck"
},
"devDependencies": {
"@changesets/cli": "2.29.7",
"@commitlint/cli": "19.8.1",
"@commitlint/config-conventional": "19.8.1",
"@types/node": "24.3.2",
"eslint": "10.0.2",
"husky": "9.1.7",
"license-checker-rseidelsohn": "4.4.2",
"prettier": "3.6.2",
"turbo": "2.5.6",
"typescript": "5.9.2"
},
"packageManager": "pnpm@10.30.1",
"dependencies": {
"@tanstack/react-query": "5.89.0",
"zod": "4.3.6"
},
"pnpm": {
"overrides": {
"minimatch": ">=10.2.4",
"flat-cache>flatted": ">=3.4.1"
}
}
}