-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.5 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
{
"name": "@malcodeman/react-button-group",
"version": "1.0.0",
"description": "A button group is a set of two or more button segments.",
"main": "dist/index.js",
"keywords": [
"react",
"button-group",
"react-button-group"
],
"scripts": {
"dev": "start-storybook -p 6006",
"build": "parcel build src/index.js",
"build-storybook": "build-storybook",
"deploy-storybook": "build-storybook && mv storybook-static/index.html storybook-static/200.html && surge storybook-static react-button-group-storybook.surge.sh",
"lint": "eslint src/**"
},
"repository": {
"type": "git",
"url": "git+https://github.com/malcodeman/react-button-group.git"
},
"author": "malcodeman",
"license": "MIT",
"bugs": {
"url": "https://github.com/malcodeman/react-button-group/issues"
},
"homepage": "https://github.com/malcodeman/react-button-group#readme",
"devDependencies": {
"@babel/core": "^7.9.0",
"@storybook/addon-a11y": "^5.3.19",
"@storybook/addon-actions": "^5.3.19",
"@storybook/addon-knobs": "^5.3.19",
"@storybook/addon-links": "^5.3.18",
"@storybook/addon-storysource": "^5.3.19",
"@storybook/addons": "^5.3.18",
"@storybook/react": "^5.3.18",
"babel-loader": "^8.1.0",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.19.0",
"parcel": "^2.0.0-alpha.3.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"styled-components": "^5.1.0"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
}
}