-
Notifications
You must be signed in to change notification settings - Fork 193
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.62 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 3.62 KB
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
{
"name": "@sistent/sistent",
"version": "0.0.1",
"description": "Reusable React Components and SVG Icons library",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/layer5io/sistent.git"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "NODE_ENV=production tsup",
"build:watch": "NODE_ENV=production tsup --watch",
"commitlint": "commitlint --edit",
"coverage": "jest --coverage",
"dev": "NODE_ENV=development tsup",
"dev:watch": "NODE_ENV=development tsup",
"format:check": "prettier --check \"**/*.{ts,tsx,md}\" --config ./.prettierrc",
"format:write": "prettier --write \"**/*.{ts,tsx,md}\" --config ./.prettierrc",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky",
"test": "jest",
"versionup:major": "npm version major",
"versionup:minor": "npm version minor",
"versionup:patch": "npm version patch"
},
"lint-staged": {
"*.{ts,tsx,md}": [
"prettier --write",
"eslint --fix"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@eslint/compat": "^1.3.2",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.39.2",
"@meshery/schemas": "^0.8.122",
"@mui/icons-material": "^6.4.8",
"@reduxjs/toolkit": "^2.2.5",
"@testing-library/react": "^16.2.0",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.16",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@types/react-redux": "^7.1.34",
"@typescript-eslint/eslint-plugin": "^8.53.0",
"@typescript-eslint/parser": "^8.53.0",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.39.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.26",
"eslint-plugin-storybook": "^10.1.11",
"globals": "^16.3.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.5.0",
"notistack": "^3.0.2",
"prettier": "^3.5.3",
"prettier-plugin-organize-imports": "^4.1.0",
"react-error-boundary": "^5.0.0",
"react-markdown": "^8.0.7",
"react-redux": "^8.1.1",
"redux": "^5.0.1",
"rehype-raw": "^6.1.1",
"remark-gfm": "^3.0.1",
"rollup": "^4.38.0",
"ts-jest": "^29.3.0",
"tsup": "^8.4.0",
"typescript": "^5.8.2",
"xstate": "^5.25.0"
},
"peerDependencies": {
"@meshery/schemas": "^0.8.118",
"@xstate/react": "^5.0.3",
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0",
"xstate": "^5.25.0"
},
"overrides": {
"@mui/icons-material": "^6.4.8",
"@mui/material": "^6.4.8",
"@meshery/schemas": {
"react": "$react",
"react-dom": "$react-dom"
}
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-dom": {
"optional": true
}
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@layer5/meshery-design-embed": "^0.4.0",
"@mui/material": "^6.4.8",
"@sistent/mui-datatables": "^5.1.4",
"@types/mui-datatables": "*",
"billboard.js": "^3.15.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"re-resizable": "^6.11.2",
"react-draggable": "^4.4.6",
"react-share": "^5.1.0",
"use-debounce": "^10.0.4"
}
}