This repository has been archived by the owner on Nov 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
117 lines (117 loc) · 2.82 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
115
116
117
{
"version": "0.2.7",
"license": "CC-BY-4.0",
"main": "dist/index.js",
"homepage": "https://macaw-ui.vercel.app/",
"repository": {
"type": "git",
"url": "git://github.com/mirumee/macaw-ui.git"
},
"bugs": {
"url": "https://github.com/mirumee/macaw-ui/issues"
},
"keywords": [
"saleor",
"macaw",
"macaw-ui",
"react",
"ui components"
],
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build --tsconfig ./tsconfig.prod.json",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint src",
"prepare": "npm run build",
"size": "size-limit",
"analyze": "size-limit --why",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"release": "np"
},
"peerDependencies": {
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.58",
"react": "^16.8.0 || ^17.0.0",
"react-helmet": "^6.1.0"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint",
"pre-push": "tsdx lint"
}
},
"np": {
"yarn": false
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": false,
"trailingComma": "es5"
},
"name": "@shopistry/macaw-ui",
"description": "Saleor's UI component library",
"author": "Saleor Commerce",
"module": "dist/macaw-ui.esm.js",
"private": false,
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"size-limit": [
{
"path": "dist/macaw-ui.cjs.production.min.js",
"limit": "45 KB"
},
{
"path": "dist/macaw-ui.esm.js",
"limit": "25 KB"
}
],
"devDependencies": {
"@babel/core": "^7.14.0",
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.58",
"@size-limit/preset-small-lib": "^4.10.2",
"@storybook/addon-essentials": "^6.2.9",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^6.2.9",
"@storybook/addons": "^6.2.9",
"@storybook/react": "^6.2.9",
"@types/lodash": "^4.14.170",
"@types/react": "^17.0.5",
"@types/react-dom": "^17.0.4",
"@types/react-helmet": "^6.1.1",
"@types/react-inlinesvg": "^1.0.0",
"babel-loader": "^8.2.2",
"babel-plugin-import": "^1.13.3",
"eslint-plugin-simple-import-sort": "^5.0.3",
"husky": "^6.0.0",
"np": "^7.5.0",
"react": "^16.8.0 || ^17.0.0",
"react-dom": "^16.8.0 || ^17.0.0",
"react-is": "^17.0.2",
"rollup-plugin-svg": "^2.0.0",
"size-limit": "^4.10.2",
"tsdx": "^0.14.1",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
},
"dependencies": {
"clsx": "^1.1.1",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"react-inlinesvg": "^2.3.0"
}
}