-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
50 lines (50 loc) · 1.42 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
{
"name": "gnn-distill",
"version": "1.0.0",
"description": "",
"main": "index.js",
"license": "Apache-2.0",
"engines": {
"node": ">=8.9.0"
},
"dependencies": {
"@tensorflow/tfjs": "2.0.0",
"add": "^2.0.6",
"d3": "^5.9.7",
"d3-jetpack": "^2.0.20",
"d3-swoopy-drag": "^0.0.3",
"doc2txt": "^0.0.3",
"graph": "^0.2.0",
"marked": "^1.1.0",
"ml-pca": "^4.0.1",
"seedrandom": "2.4.3",
"tfjs": "^0.6.0",
"underscore": "^1.10.2",
"yarn": "^1.22.10"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-plugin-transform-runtime": "~6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"clang-format": "~1.2.2",
"cross-env": "~5.1.6",
"parcel-bundler": "^1.12.3",
"parcel-plugin-static-files-copy": "^2.3.1",
"ts-node": "^8.3.0",
"typescript": "^3.0.3"
},
"scripts": {
"start": "cross-env NODE_ENV=development parcel index.html --no-hmr --out-dir=./public",
"start-hmr": "cross-env NODE_ENV=development parcel index.html --out-dir=./public",
"build": "cross-env NODE_ENV=production parcel build index.html --no-content-hash --no-minify --public-url ./ --out-dir=./public && bin/build.sh",
"clean": "rm -r public"
},
"staticFiles": {
"staticPath": "data",
"watcherGlob": "**"
},
"author": ""
}