-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.42 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
{
"name": "@buggyorg/graphify-react",
"version": "0.2.0",
"description": "React components to display buggy graphs.",
"main": "lib/index.js",
"scripts": {
"build": "rm -rf lib && babel src -d lib",
"prepublish": "rm -rf lib && babel src -d lib",
"storybook": "start-storybook -p 6006",
"deploy-storybook": "storybook-to-ghpages",
"test": "standard && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BuggyOrg/graphify-react.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/BuggyOrg/graphify-react/issues"
},
"homepage": "https://github.com/BuggyOrg/graphify-react#readme",
"devDependencies": {
"@kadira/storybook": "^2.35.3",
"@kadira/storybook-deployer": "^1.2.0",
"babel-cli": "^6.14.0",
"babel-core": "^6.8.0",
"babel-eslint": "^8.0.1",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"jest": "^19.0.2",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.5.4",
"standard": "^10.0.3",
"storyshots": "^3.2.2"
},
"peerDependencies": {
"react": "^15.5.4",
"react-dom": "^15.5.4"
},
"dependencies": {
"calculate-size": "^1.1.1",
"graphify-node": "^1.1.0",
"prop-types": "^15.5.8"
},
"standard": {
"parser": "babel-eslint"
}
}