-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.88 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.88 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
{
"name": "@zesty-io/material",
"version": "0.16.2",
"description": "Contains custom components which are in addition to the @mui design-system",
"author": "Zesty.io",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/zesty-io/material.git"
},
"bugs": {
"url": "https://github.com/zesty-io/material/issues"
},
"homepage": "https://zesty-io.github.io/material",
"main": "./cjs/index.js",
"module": "./es/index.js",
"types": "./es/index.d.ts",
"scripts": {
"build": "npm ci && tsc",
"prerelease": "npm test",
"release": "npm run build && npm publish --access public",
"release:alpha": "npm run build && npm publish --access public --tag alpha",
"postrelease": "rm -rf /es",
"deploy": "npm run build-storybook && gh-pages -d storybook-static",
"test": "echo 'add tests'",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^7.0.1",
"@mui/lab": "^7.0.0-beta.10",
"@mui/material": "^7.0.1",
"@mui/x-data-grid-pro": "^7.28.3",
"@mui/x-date-pickers-pro": "^7.28.3",
"@mui/x-tree-view": "^7.28.1",
"date-fns": "^2.28.0",
"react-window": "^1.8.7"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@storybook/addon-actions": "^6.4.22",
"@storybook/addon-essentials": "^6.4.22",
"@storybook/addon-interactions": "^6.4.22",
"@storybook/addon-links": "^6.4.22",
"@storybook/react": "^6.4.22",
"@storybook/testing-library": "0.0.11",
"@types/react-window": "^1.8.5",
"babel-loader": "^8.2.5",
"gh-pages": "^3.2.3",
"react": "^17.0.2",
"react-docgen-typescript": "^2.2.2",
"react-dom": "^17.0.2",
"react-json-view": "^1.21.3",
"typescript": "^4.6.3"
},
"files": [
"cjs",
"es"
]
}