-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.03 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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "pol-ui-root",
"version": "0.0.0",
"description": "Beauty and Performance React UI Library",
"main": "index.js",
"type": "module",
"author": {
"name": "Pol Gubau Amores",
"url": "https://polgubau.com"
},
"license": "MIT",
"homepage": "https://ui.polgubau/",
"repository": {
"type": "git",
"url": "git+https://github.com/PolGubau/pol-ui.git"
},
"bugs": {
"url": "https://github.com/PolGubau/pol-ui/issues"
},
"workspaces": [
"packages/*"
],
"maintainers": [
{
"name": "Pol Gubau Amores",
"email": "gubaupol@gmail.com"
}
],
"scripts": {
"dev": "turbo run dev --parallel",
"build": "turbo run build",
"--------------------------------------------------------------- FILTERS ---------": "---------------------------------------------",
"ui": "pnpm --filter pol-ui",
"cli": "pnpm --filter pol-ui-cli",
"icons": "pnpm --filter pol-icons",
"web-docs": "pnpm --filter pol-ui-docs",
"--------------------------------------------------------------- POL-UI ---------": "---------------------------------------------",
"storybook": "pnpm ui storybook",
"ui:test": "pnpm ui test",
"ui:build": "pnpm ui build",
"ui:lint": "pnpm ui lint",
"ui:coverage": "pnpm ui test:coverage",
"build-storybook": "pnpm ui build-storybook",
"watch": "pnpm ui watch",
"--------------------------------------------------------------- EXTRA ---------": "---------------------------------------------",
"prepare": "husky install",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"preview": "turbo run preview",
"typecheck": "turbo run typecheck",
"format:write": "turbo run format:write",
"format:check": "turbo run format:check",
"check": "turbo lint typecheck format:check",
"test": "turbo run test --force",
"open:ide": "pnpm i && pnpm ui storybook npx sort-package-json",
"commit": "cz",
"commit:help": "npx commitizen --help",
"release": "turbo release --concurrency=1",
"publish:packages": "pnpm publish --filter ./packages/* --access public"
},
"lint-staged": {
"**/*.{js,ts,tsx}": [
"eslint --fix"
],
"**/*": "prettier --write --ignore-unknown"
},
"keywords": [
"react",
"ui",
"components",
"next",
"library",
"design",
"system",
"tailwindcss",
"vite"
],
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@polgubau/configs": "^1.0.1",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/release-notes-generator": "14.0.2",
"@types/node": "^22.10.5",
"@types/react": "^18.2.65",
"@types/react-dom": "^18.2.22",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.0",
"semantic-release": "24.2.0",
"semantic-release-monorepo": "^8.0.2",
"semantic-release-npm-github-publish": "^1.5.5",
"autoprefixer": "^10.4.14",
"postcss": "^8.4.24",
"turbo": "^1.9.9",
"typescript": "^5.4.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}