generated from cobaltcore-dev/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.31 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
{
"name": "@cobaltcore-dev/aurora-dashboard",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"test": "turbo test",
"test:coverage": "turbo test",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"typecheck": "turbo typecheck",
"format:check": "prettier --config ./.prettierrc --check \"**/*.{js,jsx,ts,tsx,md}\" ",
"licenses:check": "npx license-checker-rseidelsohn --summary --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'",
"clean:vite": "find . -type f -name 'vite.config.*.timestamp-*' -ls -delete 2>/dev/null",
"clean": "pnpm run clean:vite && 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 @cobalcore-dev/aurora-package-template --name",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"eslint": "^9.14.0",
"husky": "^9.1.6",
"prettier": "^3.2.5",
"turbo": "^2.2.3"
},
"packageManager": "[email protected]",
"dependencies": {
"pnpm": "^9.14.2"
}
}