-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
117 lines (117 loc) · 3.24 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
{
"name": "@sinouiincubator/tab-group",
"version": "2.0.4",
"description": "选项卡切换组件",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/sinouiincubator-tab-group.esm.js",
"homepage": "https://sinouiincubator.github.io/tab-group",
"bugs": {
"url": "https://github.com/sinouiincubator/tab-group/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sinouiincubator/tab-group.git"
},
"scripts": {
"start": "ts-lib-tools watch",
"test": "ts-lib-tools test",
"build": "ts-lib-tools build --simple",
"format": "ts-lib-tools format",
"lint": "ts-lib-tools lint",
"release": "yarn build && yarn publish dist",
"doc:dev": "docz dev",
"doc:build": "docz build",
"doc:publish": "docz build && gh-pages -d .docz/dist",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"prettier": {
"printWidth": 80,
"useTabs": false,
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"arrowParens": "always"
},
"eslintConfig": {
"extends": "ts-lib"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/*.{ts,tsx}": [
"cross-env CI=true ts-lib-tools test",
"eslint --fix --color",
"git add"
]
},
"peerDependencies": {
"react": ">=16.8.0",
"styled-components": ">=4.0.0"
},
"dependencies": {
"@babel/polyfill": "^7.6.0",
"@babel/runtime": "^7.6.3",
"@sinoui/core": "^1.0.1",
"@sinoui/ripple": "^1.0.12",
"@sinoui/theme": "^1.0.0",
"@sinoui/utils": "^1.0.0",
"classnames": "^2.2.6",
"element-resize-detector": "^1.2.3",
"styled-components-breakpoint": "^2.1.1"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@sinoui/icons": "^1.0.0",
"@storybook/addon-actions": "^5.3.18",
"@storybook/addon-links": "^5.3.18",
"@storybook/addons": "^5.3.18",
"@storybook/react": "^5.3.18",
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/react": "^10.0.3",
"@testing-library/react-hooks": "^3.2.1",
"@types/classnames": "^2.2.10",
"@types/element-resize-detector": "^1.1.3",
"@types/lodash": "^4.14.150",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"@types/styled-components": "^5.1.0",
"@types/theme-ui": "^0.3.1",
"babel-loader": "^8.1.0",
"css-loader": "^3.5.3",
"docz": "^2.3.1",
"gatsby-plugin-tsconfig-paths": "^1.0.2",
"gh-pages": "^2.2.0",
"husky": "^4.2.5",
"jest-styled-components": "^7.0.2",
"lint-staged": "^10.1.7",
"lodash-es": "^4.17.15",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-test-renderer": "^16.13.1",
"style-loader": "^1.0.0",
"styled-components": "^5.1.0",
"ts-lib-tools": "^0.13.2",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"typescript": "^3.8.3",
"webpack-docz-ghpages-plugin": "^0.11.0"
},
"publishConfig": {
"access": "public"
},
"resolutions": {
"styled-components": "^5.1.0"
},
"types": "types/index.d.ts"
}