forked from criteo/cuttle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.8 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "7.4.4",
"@babel/plugin-proposal-class-properties": "7.4.4",
"@babel/preset-env": "7.4.4",
"@babel/preset-flow": "7.0.0",
"@babel/preset-react": "7.0.0",
"babel-eslint": "10.0.1",
"babel-loader": "8.0.5",
"css-loader": "2.1.1",
"devloop": "0.1.10",
"empty": "0.10.1",
"eslint": "5.16.0",
"eslint-config-prettier": "4.2.0",
"eslint-plugin-flowtype": "3.6.1",
"eslint-plugin-lodash": "5.1.0",
"eslint-plugin-prettier": "3.0.1",
"eslint-plugin-promise": "4.1.1",
"eslint-plugin-react": "7.12.4",
"file-loader": "3.0.1",
"flow-bin": "0.98.0",
"flow-status-webpack-plugin": "0.1.7",
"html-webpack-plugin": "3.2.0",
"less": "3.9.0",
"less-loader": "5.0.0",
"prettier-eslint-cli": "4.7.1",
"style-loader": "0.23.1",
"webpack": "4.30.0",
"webpack-cli": "3.3.1",
"webpack-dev-server": "3.3.1",
"webpack-merge": "4.2.1"
},
"dependencies": {
"autolinker": "^1.4.3",
"canvas-rounded-rectangle": "^0.0.2",
"classnames": "^2.2.5",
"css.escape": "^1.5.1",
"cytoscape": "^2.7.15",
"cytoscape-dagre": "^1.3.0",
"d3": "4.7.4",
"d3-interpolate-path": "^1.1.1",
"d3-selection": "1.3.0",
"d3-transition": "1.2.0",
"d3plus-text": "0.9.25",
"fuse.js": "^3.0.0",
"history": "^4.6.1",
"lodash": "^4.17.4",
"markdown": "^0.5.0",
"moment": "^2.17.1",
"mozilla-fira-pack": "^0.0.1",
"normalize.css": "^5.0.0",
"numeraljs": "^1.5.6",
"react": "^15.5.4",
"react-addons-css-transition-group": "^15.4.2",
"react-addons-shallow-compare": "^15.4.2",
"react-calendar": "^1.1.0",
"react-collapse": "^4.0.1",
"react-dom": "^15.6.2",
"react-icons": "^2.2.5",
"react-jss": "^5.3.0",
"react-maskedinput": "^4.0.0",
"react-measure": "^1.4.7",
"react-motion": "^0.4.8",
"react-motion-ui-pack": "^0.10.2",
"react-paginate": "^4.4.2",
"react-redux": "^5.0.2",
"react-select": "^1.3.0",
"react-tooltip": "^3.3.0",
"react-vega-lite": "1.1.2",
"redux": "^3.6.0",
"redux-form": "^6.8.0",
"redux-thunk": "^2.2.0",
"redux-url": "^1.2.3",
"unorm": "^1.4.1",
"vega": "^3.0.0-rc4",
"vega-lite": "^2.0.0-beta.10",
"whatwg-fetch": "^2.0.3"
},
"scripts": {
"start": "loop",
"format": "prettier-eslint \"**/src/**/*.js\" --write --bracket-spacing true",
"format-diff": "prettier-eslint $(git diff-index HEAD --name-only --diff-filter=d -- '*.js') --write --bracket-spacing true",
"eslint": "eslint \"**/src/**/*.js\"",
"eslint-check": "eslint --print-config .eslintrc | eslint-config-prettier-check",
"serve": "NODE_ENV=development webpack-dev-server --output-public-path='/' --hot",
"build": "NODE_ENV=production webpack"
}
}