-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
65 lines (65 loc) · 2.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "football-graphs",
"version": "0.0.1",
"description": "This is a personal project to study soccer passing networks and investigate data visualizations on graphs.",
"keywords": [
"graphs",
"football-data",
"clojure",
"clojurescript",
"data-visualization",
"data-analysis",
"sports",
"sports-analytics",
"jgrapht",
"networkx",
"betweenness-centrality",
"clustering-coefficient",
"algebraic-connectivity",
"eigenvector-centrality",
"complex-networks",
"flow-centrality",
"soccer",
"flow-betweenness",
"network-science"
],
"private": true,
"homepage": "https://grafos-da-bola.netlify.com/",
"author": {
"name": "Rodolfo Mói de Oliveira",
"email": "[email protected]",
"url": "https://github.com/rodmoioliveira"
},
"repository": {
"type": "git",
"url": "[email protected]:rodmoioliveira/football-graphs.git"
},
"bugs": "https://github.com/rodmoioliveira/football-graphs/issues",
"license": "BSD-3-Clause",
"scripts": {
"deploy": "npm-run-all --serial compile-once build",
"compile-once": "shadow-cljs compile dev",
"start": "npm-run-all --parallel build:css-once build:html dev:sass dev:cljs",
"dev:cljs": "npx shadow-cljs watch dev",
"dev:sass": "node-sass src/styles/main.scss -w public/styles/main.css",
"build": "npm-run-all --parallel build:css build:js build:html",
"build:js": "shadow-cljs release prod",
"build:css": "node-sass src/styles/main.scss dist/styles/main.css --output-style compressed --recursive --include-path node_modules --source-map true",
"build:css-once": "node-sass src/styles/main.scss public/styles/main.css",
"build:html": "node build-scripts/copy.js",
"share": "ngrok http --host-header=rewrite 8080",
"serve:prod": "npm run build && http-server dist",
"serve:dev": "http-server public",
"test": "clojure src/test/core.clj"
},
"devDependencies": {
"fs-extra": "^9.0.0",
"node-sass": "^4.13.1",
"npm-run-all": "^4.1.5",
"shadow-cljs": "2.8.94"
},
"dependencies": {
"d3": "^5.15.1",
"rxjs": "^6.5.4"
}
}