-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
123 lines (123 loc) · 3.13 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
121
122
123
{
"version": "0.0.0-development",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=18 <=22"
},
"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": "storybook dev -p 6006",
"build-storybook": "storybook build",
"semantic-release": "semantic-release"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 100,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "boemly",
"author": "Tree.ly FlexCo",
"module": "dist/boemly.esm.js",
"size-limit": [
{
"path": "dist/boemly.cjs.production.min.js",
"limit": "1.8 MB"
},
{
"path": "dist/boemly.esm.js",
"limit": "400 KB"
}
],
"devDependencies": {
"@babel/core": "^7.17.4",
"@babel/preset-env": "^7.22.4",
"@babel/preset-react": "^7.22.3",
"@babel/preset-typescript": "^7.21.5",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@size-limit/preset-big-lib": "^8.1.0",
"@storybook/addon-actions": "^7.0.21",
"@storybook/addon-essentials": "^7.0.21",
"@storybook/addon-interactions": "^7.0.21",
"@storybook/addon-links": "^7.0.21",
"@storybook/addon-mdx-gfm": "^7.0.21",
"@storybook/react": "^7.0.21",
"@storybook/react-webpack5": "^7.0.21",
"@storybook/testing-library": "^0.1.0",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^13.4.0",
"@types/react": "^18.0.0",
"@types/react-datepicker": "^4.4.2",
"@types/react-dom": "^18.0.0",
"@types/react-syntax-highlighter": "^15.5.5",
"babel-loader": "^8.2.3",
"husky": "^7.0.4",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-is": "^18.0.0",
"semantic-release": "^19.0.2",
"size-limit": "^8.1.0",
"storybook": "^7.0.21",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "^4.5.5"
},
"dependencies": {
"@chakra-ui/react": "^2.0.0",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@phosphor-icons/react": "^2.0.14",
"framer-motion": "^7.3.6",
"markdown-to-jsx": "^7.1.6",
"react-datepicker": "^4.8.0",
"react-syntax-highlighter": "^15.5.0",
"react-use": "^17.4.0"
},
"peerDependencies": {
"react": "^18.0.0"
},
"jest": {
"setupFilesAfterEnv": [
"@testing-library/jest-dom/extend-expect",
"./src/test/setupTests.ts"
],
"collectCoverageFrom": [
"./src/**/*.{js,jsx,ts,tsx}",
"!**/*.stories.{js,jsx,ts,tsx}",
"!**/src/test/**",
"!**/src/index.tsx"
]
},
"description": "Boemly is the open source component library maintained by Tree.ly.",
"repository": {
"type": "git",
"url": "https://github.com/treely/boemly.git"
},
"bugs": {
"url": "https://github.com/treely/boemly/issues"
},
"homepage": "https://boemly.tree.ly",
"release": {
"branches": [
"main"
]
}
}