-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.11 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
{
"name": "graphly",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "git://github.com/eox-a/graphly.git"
},
"license": "MIT",
"dependencies": {
"babel-polyfill": "^6.26.0",
"c-p": "^1.4.0",
"choices.js": "^3.0.4",
"colorscalesdef": "github:eox-a/colorscalesdef",
"d3": "~3.5.3",
"file-saver": "~1.2.0",
"msgpack-lite": "^0.1.26",
"regression": "^1.4.0"
},
"devDependencies": {
"@babel/core": "^7.1.5",
"@babel/preset-env": "^7.1.5",
"babel-loader": "^8.0.4",
"css-loader": "^1.0.1",
"file-loader": "^1.1.5",
"ink-docstrap": "^1.3.2",
"jsdoc": "^3.6.3",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"watchify": "^3.11.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"engines": {
"node": ">=0.8.0"
},
"scripts": {
"build-min": "webpack --config=webpack.min.config.js --profile --json > stats.json",
"start": "npm-run webpack-dev-server",
"jsdoc": "rm -rf docs/*; jsdoc -r src README.md -d docs -t node_modules/ink-docstrap/template -c jsdoc.json"
}
}