@veritone-ce/design-system 1.2.0 → 1.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +20 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veritone-ce/design-system",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"scripts": {
|
|
6
6
|
"start": "yarn storybook",
|
|
@@ -14,7 +14,10 @@
|
|
|
14
14
|
"build-storybook": "build-storybook -s public",
|
|
15
15
|
"test-storybook": "test-storybook",
|
|
16
16
|
"build-storybook-docs": "build-storybook --docs",
|
|
17
|
-
"prepare": "install-peers
|
|
17
|
+
"prepare": "install-peers",
|
|
18
|
+
"commit": "cz",
|
|
19
|
+
"typecheck": "tsc --noEmit",
|
|
20
|
+
"chromatic": "npx chromatic --project-token=2d24b3ec5211 --exit-zero-on-changes"
|
|
18
21
|
},
|
|
19
22
|
"browserslist": {
|
|
20
23
|
"production": [
|
|
@@ -41,6 +44,9 @@
|
|
|
41
44
|
"@testing-library/user-event": "^13.2.1",
|
|
42
45
|
"@types/jest": "^27.0.1",
|
|
43
46
|
"@types/node": "^16.7.13",
|
|
47
|
+
"cz-conventional-changelog": "^3.3.0",
|
|
48
|
+
"husky": "^8.0.2",
|
|
49
|
+
"react": "^18.2.0",
|
|
44
50
|
"react-scripts": "5.0.1",
|
|
45
51
|
"typescript": "^4.4.2",
|
|
46
52
|
"web-vitals": "^2.1.0"
|
|
@@ -49,6 +55,8 @@
|
|
|
49
55
|
"@babel/cli": "^7.19.3",
|
|
50
56
|
"@babel/preset-env": "^7.20.2",
|
|
51
57
|
"@babel/preset-react": "^7.18.6",
|
|
58
|
+
"@commitlint/cli": "^17.0.3",
|
|
59
|
+
"@commitlint/config-conventional": "^17.0.3",
|
|
52
60
|
"@storybook/addon-a11y": "^6.5.13",
|
|
53
61
|
"@storybook/addon-actions": "^6.5.13",
|
|
54
62
|
"@storybook/addon-essentials": "^6.5.13",
|
|
@@ -92,7 +100,9 @@
|
|
|
92
100
|
"type": "git",
|
|
93
101
|
"url": "git+ssh://git@github.com/veritone/design-system.git"
|
|
94
102
|
},
|
|
95
|
-
"author":
|
|
103
|
+
"author": {
|
|
104
|
+
"name": "Veritone"
|
|
105
|
+
},
|
|
96
106
|
"license": "MIT",
|
|
97
107
|
"bugs": {
|
|
98
108
|
"url": "https://github.com/veritone/design-system/issues"
|
|
@@ -107,5 +117,11 @@
|
|
|
107
117
|
"files": [
|
|
108
118
|
"dist"
|
|
109
119
|
],
|
|
110
|
-
"types": "dist/index.d.ts"
|
|
120
|
+
"types": "dist/index.d.ts",
|
|
121
|
+
"config": {
|
|
122
|
+
"commitizen": {
|
|
123
|
+
"path": "./node_modules/cz-conventional-changelog"
|
|
124
|
+
}
|
|
125
|
+
},
|
|
126
|
+
"readme": "ERROR: No README data found!"
|
|
111
127
|
}
|