forked from emojics/ui-kit-react
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.23 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.23 KB
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
{
"name": "@wofh/ui-kit-react",
"version": "0.41.0",
"description": "WOFH UI Kit is a reusable component library that helps WOFH contributors build UIs faster. The goal is to make building durable UIs more productive and satisfying.",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/wofh/ui-kit-react.git"
},
"keywords": [
"design",
"system",
"ui",
"kit"
],
"author": "Stefano Marra",
"license": "ISC",
"bugs": {
"url": "https://github.com/wofh/ui-kit-react/issues"
},
"homepage": "https://wofh.github.io/ui-kit-react",
"dependencies": {
"@styled-icons/ionicons-outline": "^10.24.0",
"@styled-icons/material-outlined": "^10.34.0",
"moment": "^2.29.1",
"prop-types": "^15.5.4",
"react-day-picker": "^7.4.8",
"react-dropzone": "^11.3.1",
"react-table": "^7.6.3",
"styled-components": "^5.1.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@storybook/addon-actions": "^5.3.18",
"@storybook/addon-docs": "^5.3.18",
"@storybook/addon-links": "^5.3.18",
"@storybook/addon-storysource": "^5.3.18",
"@storybook/addons": "^5.3.18",
"@storybook/preset-create-react-app": "^2.1.1",
"@storybook/react": "^5.3.18",
"@storybook/storybook-deployer": "^2.8.5",
"auto": "^9.31.1",
"cross-env": "^7.0.2",
"husky": ">=4",
"lint-staged": ">=10",
"prettier": "2.0.5",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-scripts": "^4.0.1",
"release-it": "^14.2.2"
},
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"scripts": {
"release": "npm run build && release-it && npm run deploy-storybook",
"build": "rimraf dist && babel src -d dist",
"storybook": "start-storybook -p 9009 --docs",
"build-storybook": "build-storybook --docs",
"deploy-storybook": "storybook-to-ghpages"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged"
}
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
},
"release-it": {
"github": {
"release": true,
"tokenRef": "GITHUB_TOKEN"
},
"npm": {
"publish": true
}
}
}