forked from darkecology/roostui
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 2.23 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
{
"name": "roostui",
"version": "0.1.0",
"description": "Roost visualization and annotation web interface",
"main": "js/vis.js",
"scripts": {
"build": "npm-run-all -s build:rollup build:rollup:dist",
"build:rollup": "rollup -c",
"build:rollup:dist": "rollup -c --environment BUILD:production",
"watch": "npm-run-all -s build -p watch:rollup watch:rollup:dist",
"watch:rollup": "rollup -w -c",
"watch:rollup:dist": "rollup -w -c --environment BUILD:production",
"serve": "http-server -p 8888 --cors",
"watch-serve": "npm-run-all -p serve watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/darkecology/roostui.git"
},
"keywords": ["radar", "biology", "birds", "roosts"],
"author": "Dan Sheldon <[email protected]> (https://people.cs.umass.edu/~sheldon)",
"contributors" : [
"Aroma Rodrigues <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/darkecology/roostui/issues"
},
"homepage": "https://github.com/darkecology/roostui#readme",
"dependencies": {
"@babel/preset-es2015": "^7.0.0-beta.53",
"d3": "^6.6.0",
"d3-array": "^2.12.0",
"d3-dsv": "^2.0.0",
"debug": "^4.3.1",
"http-browserify": "^1.7.0",
"jquery": "^3.6.0",
"npm-run-all": "^4.1.5",
"rollup": "^2.42.0",
"rollup-plugin-babel": "^4.4.0",
"sprintf": "^0.1.5",
"webpack": "^5.27.1"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/plugin-external-helpers": "^7.12.13",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@babel/preset-react": "^7.12.13",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"babel-loader": "^8.2.2",
"http-server": "^0.11.1",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-uglify": "^6.0.4",
"url-loader": "^4.1.1"
},
"browser": {
"http": false,
"https": false
}
}