forked from carbon-design-system/carbon-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
128 lines (128 loc) · 3.38 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "@carbon/charts-monorepo",
"private": true,
"description": "Carbon Charts component libraries for JavaScript, Angular, React, Svelte and Vue",
"type": "module",
"scripts": {
"clean:root": "rm -rf node_modules yarn.lock .yarn/cache .yarn/install-state.gz",
"clean:pages": "rm -rf pages && mkdir -p pages && touch pages/.nojekyll && echo 'charts.carbondesignsystem.com' > pages/CNAME",
"clean": "lerna clean && lerna run clean && yarn clean:root",
"commit": "git-cz",
"build:packages": "lerna run --stream build:package",
"build:demos": "NODE_ENV=production lerna run --stream build:demo",
"pub:demos": "lerna run pub:demo",
"build": "yarn build:packages && yarn build:demos && yarn clean:pages && yarn pub:demos",
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"lint": "lerna run lint",
"format": "lerna run format",
"test": "lerna run test"
},
"workspaces": [
"packages/*"
],
"engines": {
"node": "^18.19.1"
},
"packageManager": "yarn@4.1.1",
"prettier": "./prettier.config.mjs",
"devDependencies": {
"@nrwl/devkit": "^18.0.7",
"@storybook/addon-essentials": "^7.6.17",
"@storybook/addon-interactions": "^7.6.17",
"@storybook/addon-links": "^7.6.17",
"@storybook/blocks": "^7.6.17",
"@storybook/html-vite": "^7.6.17",
"@storybook/react-vite": "^7.6.17",
"@storybook/svelte": "^7.6.17",
"@storybook/sveltekit": "^7.6.17",
"@storybook/test": "^7.6.17",
"@storybook/theming": "^7.6.17",
"@storybook/vue3": "^7.6.17",
"@storybook/vue3-vite": "^7.6.17",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-svelte": "^2.35.1",
"eslint-plugin-vue": "^9.22.0",
"husky": "^9.0.11",
"lerna": "8.1.2",
"pinst": "^3.0.0",
"prettier": "^3.2.5",
"prettier-config-carbon": "^0.11.0",
"prettier-eslint": "^16.3.0",
"prettier-plugin-svelte": "^3.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.6.17",
"vite": "^5.1.5",
"vue": "^3.4.21"
},
"husky": {
"hooks": {
"pre-commit": "bash scripts/precommit.sh"
}
},
"release": {
"branch": "master"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "git@github.com:carbon-design-system/carbon-charts.git"
},
"keywords": [
"charts",
"graphs",
"radar",
"gauge",
"donut",
"pie",
"sparkline",
"tree",
"treemap",
"heatmap",
"wordcloud",
"histogram",
"alluvial",
"geo",
"bar",
"bullet",
"scatter",
"meter",
"line",
"javascript",
"angular",
"react",
"svelte",
"vue",
"component",
"carbon",
"ibm",
"svg",
"data",
"typescript"
],
"author": "IBM",
"license": "Apache-2.0",
"maintainers": [
{
"name": "Eliad Moosavi",
"email": "iliadm@ca.ibm.com"
}
]
}