forked from cultureamp/kaizen-design-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
140 lines (140 loc) · 4.97 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
129
130
131
132
133
134
135
136
137
138
139
140
{
"private": true,
"workspaces": [
"packages/*",
"draft-packages/*"
],
"engines": {
"node": ">=v16.13.1"
},
"scripts": {
"storybook": "start-storybook -p 6006 -c storybook",
"storybook:build": "build-storybook -c storybook -o storybook/public --no-manager-cache",
"eslint": "eslint . -c .eslintrc.js --ext .ts,.tsx",
"prettier": "prettier --check '**/*'",
"stylelint": "stylelint '**/*.scss'",
"test": "jest",
"playwright": "IS_DEV=true npx playwright test",
"playwright:debug": "IS_DEV=true PWDEBUG=1 npx playwright test",
"jest:debug": "node --inspect-brk node_modules/.bin/jest --runInBand --no-cache",
"compile": "tsc",
"lint": "yarn eslint --max-warnings=0 && yarn prettier && yarn stylelint",
"lint:fix": "yarn stylelint --fix && yarn eslint --max-warnings=0 --fix && yarn prettier --write",
"clean:storybook": "rimraf 'storybook/public'",
"clean": "lerna run clean && yarn clean:storybook",
"reset": "yarn clean && yarn install --force",
"chromatic": "chromatic",
"commit": "cz",
"plop": "plop"
},
"dependencies": {
"@kaizen/design-tokens": "^10.0.11",
"@kaizen/tailwind": "*",
"@storybook/addons": "^6.5.16",
"@storybook/api": "^6.5.16",
"@storybook/components": "^6.5.16",
"@storybook/core-events": "^6.5.16",
"@storybook/react": "^6.5.16",
"@storybook/theming": "^6.5.16",
"classnames": "^2.3.2",
"focus-visible": "^5.2.0",
"identity-obj-proxy": "^3.0.0",
"lodash.isempty": "^4.4.0",
"normalize.css": "^8.0.1",
"react": "^18.2.0",
"react-16": "npm:react@^16.14.0",
"react-17": "npm:react@^17.0.2",
"react-dom": "^18.2.0",
"react-dom-16": "npm:react-dom@^16.14.0",
"react-dom-17": "npm:react-dom@^17.0.2",
"react-gtm-module": "^2.0.11",
"svgo": "~3.0.2"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-numeric-separator": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/plugin-proposal-private-property-in-object": "^7.20.5",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@playwright/test": "^1.30.0",
"@storybook/addon-a11y": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/builder-webpack5": "^6.5.16",
"@storybook/manager-webpack5": "^6.5.16",
"@storybook/node-logger": "^6.5.16",
"@storybook/testing-library": "^0.0.13",
"@tanstack/react-query": "^4.24.4",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/react-12": "npm:@testing-library/react@^12.1.5",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.4.3",
"@types/classnames": "^2.3.1",
"@types/jest": "^29.4.0",
"@types/node": "^18.11.18",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"babel-loader": "^9.1.2",
"chromatic": "^6.15.0",
"commitizen": "^4.3.0",
"css-loader": "^6.7.3",
"cz-conventional-changelog": "3.3.0",
"danger": "^11.2.3",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"eslint-plugin-ssr-friendly": "^1.2.0",
"eslint-plugin-storybook": "^0.6.10",
"jest": "^29.4.1",
"jest-canvas-mock": "^2.4.0",
"jest-circus": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"jest-static-stubs": "^0.0.1",
"lerna": "3.22.1",
"node-fetch": "^3.3.0",
"node-sass": "^8.0.0",
"plop": "^3.1.1",
"postcss": "^8.4.19",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-import": "^15.1.0",
"postcss-loader": "^7.0.2",
"postcss-preset-env": "^7.8.3",
"postcss-scss": "^4.0.6",
"prettier": "^2.8.3",
"raw-loader": "^4.0.2",
"react-test-renderer": "^18.2.0",
"react-test-renderer-17": "npm:react-test-renderer@^17.0.2",
"sass-loader": "^13.2.0",
"storybook-addon-designs": "^6.3.1",
"style-loader": "^3.3.1",
"stylelint": "^14.16.1",
"svg-sprite-loader": "^6.0.11",
"svgo-loader": "~4.0.0",
"tailwindcss": "^3.2.4",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5",
"webpack": "^5.75.0"
},
"resolutions": {
"@types/react": "^18.0.27",
"commitizen": "^4.3.0"
},
"resolutionsComments": {
"@types/react": "@testing-library/react-12 has an incorrect dep (instead of peerDep) of @types/react@^17 which we don't want",
"commitizen": "cz-conventional-changelog v3.3.0 has a dependency on commitizen 4.2.4 which has vulnerabilities"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}