-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
114 lines (114 loc) · 3.8 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
{
"name": "mezzanine",
"version": "0.0.0",
"description": "mezzanine ui",
"repository": "[email protected]:Mezzanine-UI/mezzanine.git",
"author": "Mezzanine",
"contributors": [
"Jay Chen <[email protected]>",
"Travor Lee <[email protected]>"
],
"license": "MIT",
"keywords": [
"mezzanine",
"ui",
"react"
],
"private": true,
"workspaces": [
"packages/core",
"packages/icons",
"packages/react",
"packages/system"
],
"engines": {
"node": ">=20.9.0"
},
"scripts": {
"format": "prettier './**/*.{json,md,mdx,html}' --write",
"lint:css": "stylelint ./**/*.scss",
"lint:es": "eslint . --ext .js,.ts,.tsx,.mdx,.html",
"lint": "yarn lint:es && yarn lint:css",
"test": "lerna run test --stream --sort",
"test:coverage": "lerna run test:coverage --stream --sort",
"build": "lerna run build --stream --sort",
"build:base": "yarn build --scope @mezzanine-ui/system --scope @mezzanine-ui/icons --scope @mezzanine-ui/core",
"build:clean": "lerna run build:clean --stream --parallel",
"release": "lerna version && yarn build && lerna publish from-package",
"commit": "git-cz",
"system:test": "yarn workspace @mezzanine-ui/system test",
"system:test:coverage": "yarn system:test --coverage",
"core:test": "yarn workspace @mezzanine-ui/core test",
"core:test:coverage": "yarn core:test --coverage",
"react:test": "yarn workspace @mezzanine-ui/react test",
"react:test:coverage": "yarn react:test --coverage",
"react:build": "storybook build",
"react:storybook": "storybook dev -p 6006",
"prepare": "husky"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@babel/preset-typescript": "^7.26.0",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/compat": "^1.2.3",
"@rollup/plugin-typescript": "^12.1.1",
"@storybook/addon-essentials": "^8.4.5",
"@storybook/addon-interactions": "^8.4.5",
"@storybook/addon-links": "^8.4.5",
"@storybook/addon-storysource": "^8.4.5",
"@storybook/addon-webpack5-compiler-babel": "^3.0.3",
"@storybook/blocks": "^8.4.5",
"@storybook/manager-api": "^8.4.5",
"@storybook/react": "^8.4.5",
"@storybook/react-webpack5": "^8.4.5",
"@storybook/theming": "^8.4.5",
"@testing-library/dom": "^10.4.0",
"@types/jest": "^29.5.14",
"@types/react-refresh": "^0",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"babel-loader": "^9.2.1",
"commitizen": "^4.3.1",
"css-loader": "^7.1.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.15.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-mdx": "^3.1.5",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-storybook": "^0.11.1",
"fs-extra": "^11.2.0",
"glob": "^11.0.0",
"globals": "^15.12.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lerna": "^8.1.9",
"lint-staged": "^15.2.10",
"postcss": "^8.4.49",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rollup": "^4.27.3",
"sass": "^1.81.0",
"sass-loader": "^16.0.3",
"storybook": "^8.4.5",
"storybook-rytass-palette": "^0.0.12",
"style-loader": "^4.0.0",
"stylelint": "^16.10.0",
"stylelint-config-recommended-scss": "^14.1.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-order": "^6.0.4",
"stylelint-scss": "^6.10.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3",
"webpack": "^5.96.1"
},
"packageManager": "[email protected]"
}