-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 823 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 823 Bytes
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
{
"name": "beyond-ui",
"version": "1.0.0",
"description": "A React UI Component Library",
"main": "index.js",
"repository": "git@github.com:worklifebeyond/beyond-ui.git",
"author": "Randy Vianda Putra <modulloe@gmail.com>",
"license": "MIT",
"scripts": {
"build": "babel src -d lib",
"dev": "yarn run storybook",
"storybook": "start-storybook -p 9001 -c .storybook"
},
"peerDependencies": {
"react": "^16.4.2",
"react-dom": "^16.4.2"
},
"devDependencies": {
"@storybook/react": "^3.4.10",
"@storybook/addon-options": "^3.4.10",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"react": "^16.4.2",
"react-dom": "^16.4.2"
},
"dependencies": {
"styled-components": "^4.4.0"
}
}