generated from cloudoperators/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 2.04 KB
/
package.json
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,
"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='[email protected]' --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": "npm 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": "npm run build && changeset publish",
"prepare": "husky",
"pkg:run": "turbo run dev --filter",
"pkg": "npm run pkg:run --",
"repair": "npm i -f",
"reinstall": "npm run clean && npm i",
"pre:push": "turbo run lint typecheck"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/node": "^20.14.11",
"eslint": "^9.7.0",
"husky": "^9.1.5",
"license-checker-rseidelsohn": "4.3.0",
"prettier": "^3.2.5",
"turbo": "^2.0.3",
"typescript": "^5.5.4"
},
"workspaces": [
"apps/*",
"packages/*"
],
"packageManager": "^[email protected]",
"dependencies": {
"@tanstack/react-query": "^5.62.2",
"workspaces": "^0.1.0"
}
}