-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.88 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "react-flow-visualizer",
"private": true,
"version": "0.1.0",
"description": "React visualization of flow-data produced by FlowLogger",
"main": "./src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/Cantara/FlowVisualizerReact.git"
},
"author": "Cantara AS",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Cantara/FlowVisualizerReact/issues"
},
"homepage": "https://github.com/Cantara/FlowVisualizerReact",
"keywords": [
"react",
"react-component",
"FlowLogger",
"cytoscape"
],
"peerDependencies": {
"react": "^15.0.0",
"react-dom": "^15.0.0"
},
"dependencies": {
"babel-runtime": "^6.23.0",
"cytoscape": "3.1.4",
"cytoscape-dagre": "2.2.2",
"react": "^15.6.1",
"react-dom": "^15.6.1"
},
"devDependencies": {
"babel-core": "6.24.1",
"babel-eslint": "7.2.3",
"babel-jest": "20.0.3",
"babel-loader": "7.0.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-react-app": "^3.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "1.3.5",
"babel-preset-env": "^1.6.0",
"eslint": "3.19.0",
"eslint-config-prettier": "^2.3.0",
"eslint-config-react-app": "^1.0.4",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-loader": "1.7.1",
"eslint-plugin-flowtype": "2.33.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.0",
"eslint-plugin-prettier": "^2.1.2",
"eslint-plugin-react": "7.0.1",
"flow-bin": "^0.48.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src",
"flow": "flow",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --single-quote --trailing-comma es5 --write",
"git add"
]
},
"eslintConfig": {
"extends": "react-app"
}
}