This repository has been archived by the owner on May 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
185 lines (185 loc) · 6.45 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
{
"name": "react-multiview",
"version": "1.0.0",
"description": "React multiview",
"main": "src/index.js",
"module": "src/index.js",
"author": {
"name": "Sungsoo Ha"
},
"homepage": "http://computationalscienceinitiative.github.io/react-multiview/",
"license": "MIT",
"scripts": {
"clean": "rimraf -rf ./build",
"modernizr": "modernizr -c config/modernizr-config.json -d ./build/dist/modernizr.js",
"watch": "npm run clean && npm run modernizr && cross-env IP=0.0.0.0 PORT=8080 BABEL_ENV=watch webpack-dev-server --config config/webpack.config.js --env watch",
"docs": "npm run build:docs && ncp docs/images/ build/images && ncp docs/data/ build/data",
"build:docs": "echo 'DOCS - BUILD' && cross-env BABEL_ENV=es webpack --config config/webpack.config.js --env docs",
"prebuild": "npm run clean && npm run lint",
"build": "npm run modernizr && npm run docs",
"babel:cjs:watch": "npm run babel:cjs -- -watch",
"babel:es:watch": "npm run babel:es -- -watch",
"babel:cjs": "cross-env BABEL_ENV=cjs babel src --out-dir build --source-maps",
"babel:es": "cross-env BABEL_ENV=es babel src --out-dir build/es --source-maps",
"release": "npm run clean && npm run babel:cjs && npm run babel:es && cp README.md build/ && node scripts/release.js",
"lint": "eslint --ext .js,.jsx src --fix",
"lintapp": "eslint --ext .js,.jsx docs --fix",
"upgrade:patch": "npm version patch",
"preversion": "npm run lint",
"version": "node scripts/updateVersion.js && git add \"src/index.js\"",
"postversion": "git push origin `git rev-parse --abbrev-ref HEAD` && git push origin `git describe`",
"npm:publish:next": "npm run release && cd build && npm publish --tag next",
"npm:publish:latest": "npm run release && cd build && npm publish",
"info": "npm info react-multiview",
"sourcemap:visualize": "source-map-explorer build/dist/react-multiview.min.js build/dist/react-multiview.min.js.map",
"server": "cd build && python3 -m http.server 8090",
"appclean": "rimraf -rf ./multiview/static/js/* && rimraf -rf ./multiview/templates/*",
"appmodernizr": "modernizr -c config/modernizr-config.json -d ./multiview/static/js/modernizr.js",
"appwatch": "cross-env BABEL_ENV=es webpack --config config/app.config.js --env watch && ncp docs/data/ multiview/static/resources/data && ncp docs/data/cm/ multiview/static/resources/data/cm",
"apptest": "echo 'APP - BUILD' && npm run appclean && npm run appmodernizr && ncp docs/js/ multiview/static/js && npm run appwatch",
"appwatch2": "cross-env BABEL_ENV=es webpack --config config/app.config.js --env watch",
"apptest2": "echo 'APP - BUILD' && npm run appclean && npm run appmodernizr && npm run appwatch2"
},
"dependencies": {
"axios": "^0.17.1",
"canvasjs": "^1.8.1",
"chart.js": "^2.7.2",
"classnames": "^2.2.6",
"d3-array": "^1.2.1",
"d3-collection": "^1.0.4",
"d3-color": "^1.0.3",
"d3-force": "^1.1.0",
"d3-format": "^1.2.1",
"d3-interpolate": "^1.1.6",
"d3-path": "^1.0.5",
"d3-scale": "^1.0.7",
"d3-scale-chromatic": "^1.2.0",
"d3-selection": "^1.2.0",
"d3-shape": "^1.2.0",
"d3-time": "^1.0.8",
"d3-time-format": "^2.1.1",
"debug": "^3.1.0",
"event-source-polyfill": "0.0.12",
"eventsource": "^1.0.5",
"lodash.debounce": "^4.0.8",
"lodash.flattendeep": "^4.4.0",
"lodash.foreach": "^4.5.0",
"lodash.get": "^4.4.2",
"lodash.includes": "^4.3.0",
"lodash.isarray": "^4.0.0",
"lodash.keys": "^4.2.0",
"lodash.set": "^4.3.2",
"lodash.sortby": "^4.7.0",
"lodash.throttle": "^4.1.1",
"lodash.uniqby": "^4.7.0",
"lodash.uniqueid": "^4.0.1",
"prop-types": "^15.6.0",
"randomcolor": "^0.5.3",
"react-chartjs-2": "^2.7.4",
"react-eventsource": "^1.1.0",
"react-redux": "^5.0.6",
"react-toolbox": "^2.0.0-beta.12",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"reselect": "^3.0.1",
"rt-treeview": "^0.1.1",
"save-svg-as-png": "^1.2.0"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0"
},
"devDependencies": {
"autoprefixer-loader": "^3.2.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"bootstrap": "^3.3.7",
"cross-env": "^5.1.1",
"css-loader": "^0.28.7",
"d3-dsv": "^1.0.8",
"es6-promise": "^4.1.1",
"eslint": "^4.12.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-const-immutable": "^2.0.0",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.5.1",
"extract-text-webpack-plugin": "^2.1.2",
"file-loader": "^1.1.5",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^2.30.1",
"json-loader": "^0.5.7",
"modernizr": "^3.5.0",
"ncp": "^2.0.0",
"node-sass": "^4.7.2",
"postcss": "^7.0.1",
"postcss-cssnext": "^3.0.2",
"postcss-each": "^0.10.0",
"postcss-import": "^11.0.0",
"postcss-loader": "^2.0.10",
"postcss-mixins": "^6.2.0",
"postcss-nested": "^3.0.0",
"postcss-nesting": "^6.0.0",
"prismjs": "^1.8.4",
"progress-bar-webpack-plugin": "^1.10.0",
"react": "^16.1.1",
"react-bootstrap": "^0.31.5",
"react-dom": "^16.1.1",
"remarkable-loader": "^0.2.1",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.6",
"shelljs": "^0.7.8",
"style-loader": "^0.19.0",
"stylelint-config-recommended": "^2.1.0",
"url-loader": "^0.6.2",
"webpack": "^3.8.1",
"webpack-config-utils": "^2.3.0",
"webpack-dev-server": "^2.9.4",
"whatwg-fetch": "^2.0.3"
},
"browserify": {
"transform": [
[
"babelify",
{
"extensions": [
".js",
".jsx"
]
}
]
]
},
"keywords": [
"charts",
"charting",
"react",
"ReactJS",
"d3",
"react-component",
"react-charts",
"chart-components",
"data-visualization",
"data-viz"
],
"repository": {
"type": "git",
"url": "https://github.com/ComputationalScienceInitiative/react-multiview.git"
},
"bugs": {
"url": "https://github.com/ComputationalScienceInitiative/react-multiview/issues"
},
"maintainers": [
{
"name": "sungsoo",
"email": "[email protected]"
}
]
}