-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
121 lines (121 loc) · 3.11 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
{
"version": "0.14.1",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/githubocto/flat-ui.git"
},
"homepage": "https://github.com/githubocto/flat-ui#readme",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=12.13.0"
},
"babelMacros": {
"twin": {
"preset": "emotion"
}
},
"scripts": {
"start": "tsdx watch",
"build": "NODE_ENV=production tsdx build --transpileOnly",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint",
"prepare": "NODE_ENV=production tsdx build --transpileOnly",
"size": "size-limit",
"analyze": "size-limit --why",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"peerDependencies": {
"react": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "@githubocto/flat-ui",
"author": "GitHub OCTO",
"module": "dist/flat-ui.esm.js",
"size-limit": [
{
"path": "dist/flat-ui.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/flat-ui.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/plugin-transform-react-jsx": "^7.14.5",
"@emotion/babel-plugin-jsx-pragmatic": "^0.1.5",
"@size-limit/preset-small-lib": "^4.10.1",
"@storybook/addon-essentials": "^6.1.21",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^6.1.21",
"@storybook/addons": "^6.1.21",
"@storybook/react": "^6.1.21",
"@types/d3": "^6.3.0",
"@types/linkify-it": "^3.0.2",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
"@types/react-virtualized": "^9.21.11",
"autoprefixer": "^10.2.5",
"babel-loader": "^8.2.2",
"babel-plugin-macros": "^3.1.0",
"husky": "^5.1.3",
"postcss": "^8.2.8",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-is": "^17.0.1",
"rollup-plugin-postcss": "^4.0.0",
"size-limit": "^4.10.1",
"tailwindcss": "^3.0.15",
"tsdx": "^0.14.1",
"tslib": "^2.1.0",
"typescript": "^4.3.5"
},
"dependencies": {
"@emotion/react": "^11.4.0",
"@primer/octicons-react": "^12.1.0",
"@radix-ui/react-dropdown-menu": "^0.0.10",
"@radix-ui/react-popover": "^0.0.8",
"@reach/checkbox": "^0.13.2",
"@tailwindcss/line-clamp": "^0.2.0",
"@types/dompurify": "^2.2.2",
"@types/lodash": "^4.0.6",
"@types/react-virtualized-auto-sizer": "^1.0.0",
"@types/react-window": "^1.8.2",
"d3": "^6.6.0",
"date-fns": "^2.19.0",
"dompurify": "^2.2.9",
"downshift": "^6.1.1",
"immer": "^9.0.12",
"linkify-it": "^3.0.3",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"match-sorter": "^6.3.0",
"react-range": "^1.8.7",
"react-use": "^17.2.0",
"react-virtualized-auto-sizer": "^1.0.5",
"react-window": "^1.8.6",
"twin.macro": "^2.6.2",
"zustand": "^3.6.9"
}
}