-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.05 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.05 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
67
68
69
70
71
72
73
74
75
76
77
{
"name": "cloudtower-ui-kit",
"version": "0.1.0",
"private": true,
"license": "MIT",
"workspaces": [
"story",
"packages/*"
],
"scripts": {
"prepare": "husky install",
"postbuild": "turbo run typings",
"bundlewatch": "bundlewatch",
"build": "turbo run build",
"test:ci": "turbo run test:ci",
"dev": "turbo run dev --parallel",
"ci:versionup:patch": "lerna version patch --no-push --no-git-tag-version --yes && npm run commit-version",
"ci:versionup:minor": "lerna version minor --no-push --no-git-tag-version --yes && npm run commit-version",
"commit-version": "git add . && git commit -m \"chore(release): v`node -p 'require(\"./lerna.json\").version'`\"",
"lint": "eslint \"**/*.{tsx,ts}\" --fix",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"yalc:publish": "yarn build && for pkg in packages/*/; do (cd \"$pkg\" && yalc publish --push); done"
},
"lint-staged": {
"**/*.{ts,tsx,md}": [
"prettier --write",
"eslint"
]
},
"devDependencies": {
"@types/ejs": "^3.1.1",
"eslint": "^8.25.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"husky": "^8.0.1",
"lerna": "^4.0.0",
"lerna-update-wizard": "^1.1.2",
"lint-staged": "^13.0.3",
"prettier": "^3.0.1",
"turbo": "^1.6.3",
"bundlewatch": "^0.3.3"
},
"engines": {
"node": "24.x"
},
"resolutions": {
"@types/react": "^17.0.50"
},
"bundlewatch": {
"files": [
{
"path": "./packages/eagle/dist/esm/**/*.js",
"maxSize": "5 kB"
},
{
"path": "./packages/parrot/dist/**/*.js",
"maxSize": "8 kB"
},
{
"path": "./packages/eagle/dist/components.css",
"maxSize": "100 kB"
},
{
"path": "./packages/eagle/dist/font.css",
"maxSize": "1 kB"
},
{
"path": "./packages/eagle/dist/style.css",
"maxSize": "100 kB"
},
{
"path": "./packages/icons/dist/**/*.svg",
"maxSize": "6 kB"
}
]
}
}