-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.45 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.45 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
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@cobaltcore-dev/aurora-dashboard",
"version": "1.0.0",
"license": "Apache-2.0",
"private": false,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"check-i18n": "turbo check-i18n",
"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",
"release": "semantic-release",
"release:dry": "semantic-release --dry-run",
"audit": "pnpm audit --prod"
},
"devDependencies": {
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/github": "^12.0.0",
"@semantic-release/release-notes-generator": "^14.0.1",
"commitizen": "^4.3.1",
"conventional-changelog-conventionalcommits": "^9.0.0",
"cz-customizable": "^7.5.1",
"eslint": "^10.0.2",
"husky": "^9.1.6",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.7.2",
"semantic-release": "^25.0.0",
"turbo": "^2.2.3"
},
"packageManager": "pnpm@10.33.0",
"dependencies": {
"pnpm": "^10.33.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
},
"pnpm": {
"overrides": {
"minimatch@<10.2.5": "10.2.5",
"tmp@<=0.2.3": ">=0.2.4",
"lodash@>=4.0.0 <=4.17.22": ">=4.17.23",
"lodash@>=4.0.0 <=4.17.23": ">=4.18.0",
"lodash-es@>=4.0.0 <=4.17.23": ">=4.18.0",
"picomatch@<2.3.2": "4.0.4",
"picomatch@>=4.0.0 <4.0.4": "4.0.4",
"path-to-regexp@>=8.0.0 <8.4.0": ">=8.4.0",
"brace-expansion@<5.0.5": ">=5.0.5",
"@fastify/middie@<=9.3.1": ">=9.3.2"
}
}
}