-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.27 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
{
"name": "tensorflow-js-experiments",
"version": "0.0.1",
"description": "it is just my experiments with tensorflow.js",
"main": "index.js",
"scripts": {
"watch": "NODE_ENV=development parcel --log-level 3 --no-hmr index.html ",
"build": "NODE_ENV=production parcel build index.html --no-minify --public-url ./",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hyzhak/tensorflow-js-experiments.git"
},
"keywords": [
"tensorflow",
"machine",
"learning",
"deep",
"learning",
"cnn",
"experiments"
],
"author": "Eugene Krevenets (ievgenii.krevenets@gmail.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/hyzhak/tensorflow-js-experiments/issues"
},
"homepage": "https://github.com/hyzhak/tensorflow-js-experiments#readme",
"dependencies": {
"@tensorflow/tfjs": "^0.12.2",
"bootstrap": "^4.1.2",
"lodash": "^4.17.10",
"rxjs": "^6.2.2",
"vega": "^4.1.0",
"vega-embed": "^3.18.1",
"vega-lite": "^2.6.0"
},
"devDependencies": {
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"node-sass": "^4.9.2",
"parcel-bundler": "^1.9.6"
}
}