-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
92 lines (92 loc) · 3.59 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
{
"name": "@ui-kit-2022/monorepo",
"version": "0.0.0",
"private": true,
"engines": {
"npm": ">=8.0.0 <9.0.0",
"yarn": ">=3.0.0 <4.0.0",
"node": ">=16.0.0 =<18.0.0"
},
"workspaces": [
"packages/*",
"docs"
],
"scripts": {
"dev": "yarn build-lib && yarn conc \"yarn dev:components\" \"yarn dev:theme\" \"yarn dev:storybook\"",
"dev:components": "yarn workspace @ui-kit-2022/components run dev",
"dev:theme": "yarn workspace @ui-kit-2022/theme run dev",
"dev:storybook": "yarn workspace @ui-kit-2022/docs run preview",
"build": "yarn workspaces foreach --topological-dev run build",
"build-lib": "yarn workspaces foreach --topological-dev --from '{@ui-kit-2022/components,@ui-kit-2022/theme}' run build",
"build-storybook": "yarn workspace @ui-kit-2022/docs run build",
"lint:fix": "eslint . --ext .jsx,.js,.ts,.tsx --quiet --fix --ignore-path ./.eslintignore",
"lint:format": "prettier --loglevel warn --write \"./**/*.{js,jsx,ts,tsx,css,md,json}\" ",
"lint": "yarn lint:format && yarn lint:fix ",
"lint:test": "eslint . --ext .jsx,.js,.ts,.tsx --ignore-path ./.eslintignore",
"prepare": "husky install",
"clean": "rm -r ./dist; yarn workspaces foreach run clean",
"release": "yarn build-lib && yarn changeset publish",
"version": "yarn changeset version && yarn --mode=update-lockfile",
"test:unit": "yarn workspace @ui-kit-2022/components run test:unit && yarn workspace @ui-kit-2022/theme run test:unit",
"test:coverage": "yarn workspace @ui-kit-2022/components run test:unit --coverage && yarn workspace @ui-kit-2022/theme run test:unit --coverage"
},
"devDependencies": {
"@changesets/cli": "^2.25.0",
"@emotion/react": "^11.10.4",
"@mui/types": "^7.2.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.2.1",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"@ui-kit-2022/components": "0.0.1",
"@vitejs/plugin-react": "^2.1.0",
"chart.js": "^4.1.1",
"chartjs-plugin-annotation": "^1.4.0",
"chartjs-plugin-zoom": "^1.2.1",
"chromatic": "^6.10.2",
"concurrently": "^7.5.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.1",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.3.1",
"jest-svg-transformer": "^1.0.0",
"jest-transform-stub": "^2.0.0",
"lint-staged": "^13.0.3",
"parse-node-version": "^2.0.0",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-chartjs-2": "^4.3.1",
"react-dom": "^18.2.0",
"ts-jest": "^29.0.3",
"typescript": "^4.6.4",
"vite": "^3.1.0",
"vite-plugin-svgr": "^2.2.1"
},
"lint-staged": {
"*.{jsx,js,ts,tsx}": "eslint --fix",
"*.{js,jsx,ts,tsx,css,md,json}": "prettier --cache --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AdaptiveConsulting/ui-kit-2022.git"
},
"bugs": {
"url": "https://github.com/AdaptiveConsulting/ui-kit-2022/issues"
},
"readme": "ERROR: No README data found!",
"homepage": "https://github.com/AdaptiveConsulting/ui-kit-2022#readme",
"_id": "ui-kit-2022@0.0.0",
"packageManager": "yarn@3.2.4"
}