-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.44 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
{
"name": "@ornl-sava/vis-react-components",
"version": "1.1.21",
"description": "A set of React component for building visualizations.",
"repository": {
"type": "git",
"url": "https://github.com/ornl-sava/vis-react-components.git"
},
"bugs": {
"url": "https://github.com/ornl-sava/vis-react-components/issues"
},
"homepage": "https://github.com/ornl-sava/vis-react-components",
"unpkg": "dist/vis-react-components.min.js",
"main": "lib/index.js",
"author": "Dave Richadson <[email protected]>",
"contributors": [
{
"name": "Andrew Pachuilo"
},
{
"name": "John Goodall",
"email": "[email protected]"
},
{
"name": "James Senter"
},
{
"name": "Chad Steed",
"email": "[email protected]"
}
],
"dependencies": {
"d3": "^5.9.2",
"lodash.debounce": ">=4.0.8",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-transition-group": "^1.2.1",
"topojson": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-syntax-object-rest-spread": "^7.2.0",
"@babel/plugin-transform-object-assign": "^7.2.0",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.6",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-react": "^7.0.2",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.8.3",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-react": "^7.9.1",
"eslint-plugin-standard": "^4.0.0",
"file-loader": "^4.0.0",
"html-webpack-plugin": "^3.2.0",
"json-loader": "^0.5.4",
"prop-types": "^15.5.8",
"react-router-dom": "^5.0.1",
"style-loader": "^0.23.1",
"url-loader": "^2.0.0",
"webpack": "^4.8.1",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.7.1",
"webpack-merge": "^4.1.0"
},
"scripts": {
"start": "webpack-dev-server --mode development --progress --colors",
"build": "npm run buildLib && npm run buildDist",
"buildLib": "rm -rf ./lib && BABEL_ENV=production ./node_modules/.bin/babel src/ --out-dir ./lib",
"buildDist": "rm -rf ./dist && webpack --mode production --progress --colors",
"analyze": "webpack --mode production --progress --colors",
"lint": "eslint src --ext .js --ext .jsx --ignore-path .gitignore"
}
}