This repository was archived by the owner on Dec 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.62 KB
/
package.json
File metadata and controls
118 lines (118 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
{
"name": "@maxihost/metal-ui",
"version": "4.9.0",
"description": "Metal UI Design System",
"main": "dist/index.js",
"module": "esm/index.js",
"files": [
"dist/",
"esm/",
"CHANGELOG.md",
"tailwind-preset.js",
"package.json",
"package-lock.json"
],
"scripts": {
"test": "jest --watch -u",
"test--ci": "jest --ci",
"dev": "start-storybook ./public 9001",
"deploy-storybook": "storybook-to-ghpages",
"build": "NODE_ENV=production rollup --config rollup.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Maxihost/metal-ui.git"
},
"babelMacros": {
"twin": {
"preset": "emotion"
}
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "7.12.3",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "7.10.4",
"@babel/preset-react": "^7.14.5",
"@emotion/babel-plugin-jsx-pragmatic": "^0.1.5",
"@emotion/babel-preset-css-prop": "^11.2.0",
"@emotion/jest": "^11.8.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.1.1",
"@semantic-release/npm": "^7.0.6",
"@semantic-release/release-notes-generator": "^9.0.1",
"@storybook/addon-actions": "^6.3.7",
"@storybook/addon-docs": "^6.3.7",
"@storybook/react": "^6.3.7",
"@storybook/storybook-deployer": "^2.8.10",
"@svgr/webpack": "^5.5.0",
"@tailwindcss/forms": "^0.2.1",
"@tailwindcss/postcss7-compat": "^2.0.3",
"@tailwindcss/ui": "^0.5.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.2.0",
"autoprefixer": "^9.8.6",
"babel-loader": "8.1.0",
"babel-plugin-macros": "^3.0.1",
"babel-plugin-twin": "^1.0.2",
"babel-preset-react-app": "^9.1.2",
"classnames": "^2.2.6",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^8.11.0",
"jest": "^26.0.1",
"path": "^0.12.7",
"postcss": "^7.0.35",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hot-loader": "^4.13.0",
"react-instantsearch-dom": "^6.7.0",
"react-svg": "^11.0.20",
"react-test-renderer": "^16.13.1",
"rollup": "^2.56.2",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-jsx": "^1.0.3",
"rollup-plugin-uglify": "^6.0.4",
"rollup-plugin-visualizer": "^5.7.1",
"semantic-release": "^17.1.2",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.0.3",
"twin.macro": "^2.3.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"peerDependencies": {
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.1.5",
"classnames": "^2.2.6",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.1.5",
"@heroicons/react": "^1.0.6",
"@radix-ui/react-dropdown-menu": "^1.0.0",
"@radix-ui/react-hover-card": "^1.0.0",
"@radix-ui/react-label": "^1.0.0",
"@radix-ui/react-popover": "^1.0.0",
"@radix-ui/react-radio-group": "^1.0.0",
"@radix-ui/react-tabs": "^1.0.0",
"@react-aria/focus": "^3.6.0",
"@react-aria/radio": "^3.2.0",
"@react-aria/visually-hidden": "^3.3.0",
"@react-stately/radio": "^3.4.0",
"react-instantsearch-dom": "^6.7.0",
"react-use": "^17.2.4"
}
}