forked from picsolab/PolicyFlow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.33 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
{
"name": "diffusion2017vis",
"version": "2.0.0",
"description": "A visualization for policy diffusion network analysis.",
"scripts": {
"prestart": "npm run build",
"start": "app/env/bin/python ./server.py",
"predev": "npm run clean",
"dev": "webpack -w",
"clean": "rimraf ./app/static/",
"prebuild": "npm run clean",
"build": "webpack --config config/webpack.prod.js --progress --profile --bail",
"stop": "ps aux | grep ./server.py | grep -v grep | awk '{ print $2 }' | xargs kill"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chukunx/diffusion2017vis.git"
},
"keywords": [
"data-visualization",
"network-analysis"
],
"author": "PICSO Lab",
"license": "ISC",
"bugs": {
"url": "https://github.com/chukunx/diffusion2017vis/issues"
},
"homepage": "https://github.com/chukunx/diffusion2017vis#readme",
"dependencies": {
"backbone": "^1.3.3",
"bootstrap": "^3.3.7",
"bootstrap-select": "^1.12.2",
"bootstrap-switch": "^3.3.4",
"bootstrap-table": "^1.11.2",
"core-js": "^2.4.1",
"crossfilter": "^1.3.12",
"css-variables-loader": "^2.0.2",
"d3": "^3.5.16",
"d3-geo": "^1.6.4",
"d3-tip": "^0.6.3",
"d3v4": "^4.2.2",
"dc": "^2.1.8",
"hammerjs": "^2.0.8",
"jquery": "^3.1.1",
"lodash": "^4.17.4",
"mathjs": "^3.16.3",
"rxjs": "5.0.1",
"topojson": "^3.0.0",
"tsne": "^1.0.1",
"underscore-template-loader": "^0.8.0"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-env": "^1.6.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.26.1",
"extract-text-webpack-plugin": "2.0.0-beta.5",
"file-loader": "^0.9.0",
"html-loader": "^0.4.3",
"html-webpack-plugin": "^2.29.0",
"null-loader": "^0.1.1",
"raw-loader": "^0.5.1",
"rimraf": "^2.5.2",
"style-loader": "^0.13.1",
"typescript": "~2.0.10",
"uglifyjs-webpack-plugin": "^0.4.6",
"webpack": "2.2.1",
"webpack-dev-server": "2.4.1",
"webpack-merge": "^3.0.0",
"worker-loader": "^1.0.0"
}
}