-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.88 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.88 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
{
"name": "@emojics/ui-kit-react",
"version": "0.5.2",
"description": "Emojics UI Kit is a reusable component library that helps Emojics 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/emojics/ui-kit-react.git"
},
"keywords": [
"design",
"system",
"ui",
"kit"
],
"author": "Stefano Marra",
"license": "ISC",
"bugs": {
"url": "https://github.com/emojics/ui-kit-react/issues"
},
"homepage": "https://github.com/emojics/ui-kit-react#readme",
"dependencies": {
"prop-types": "^15.5.4",
"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": "3.4.1"
},
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"scripts": {
"release": "npm run build && ./scripts/release.sh && 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"
}
}