-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 3.35 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
118
119
120
{
"version": "0.1.2",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"copies": "copyfiles -f src/PortalComponents/BQHeader/logos/* dist/PortalComponents/BQHeader/logos"
},
"peerDependencies": {
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@mui/base": "^5.0.0-alpha.92",
"@mui/icons-material": "^5.8.4",
"@mui/material": "^5.10.0",
"@types/lodash": "^4.14.182",
"@types/lodash-es": "^4.17.6",
"@types/mui-image": "^1.0.0",
"@types/underscore": "^1.11.4",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"mui-image": "^1.0.7",
"rgbaster": "^2.1.1",
"styled-components": "^5.3.5",
"underscore": "^1.13.4"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "bq-react-lib",
"author": "william Cabrera",
"module": "dist/bq-react-lib.esm.js",
"size-limit": [
{
"path": "dist/bq-react-lib.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/bq-react-lib.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@babel/core": "^7.18.10",
"@rollup/plugin-image": "^3.0.1",
"@size-limit/preset-small-lib": "^8.0.0",
"@storybook/addon-essentials": "^6.5.10",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^6.5.10",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/addons": "^6.5.10",
"@storybook/react": "^6.5.10",
"@tailwindcss/container-queries": "^0.1.0",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"autoprefixer": "^10.4.13",
"babel-loader": "^8.2.5",
"cssnano": "^5.1.12",
"eslint": "^8.10.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest-dom": "4.0.1",
"eslint-plugin-jsdoc": "^38.0.6",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "^7.29.3",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^8.0.1",
"postcss": "^8.4.21",
"prettier-eslint": "^14.0.2",
"prettier-eslint-cli": "^5.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"rollup-plugin-postcss": "^4.0.2",
"size-limit": "^8.0.0",
"tailwindcss": "^3.2.7",
"tsdx": "^0.14.1",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"bootstrap": "^5.2.0",
"copyfiles": "^2.4.1",
"markdown-to-jsx": "^7.1.7",
"react-bootstrap": "^2.5.0",
"react-router-dom": "^6.3.0",
"rollup-plugin-image-files": "^1.4.2"
}
}