forked from tensorflow/tfjs-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.17 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
{
"name": "tfjs-examples-fashion-mnist-vae",
"version": "0.1.0",
"description": "",
"main": "train.js",
"license": "Apache-2.0",
"private": true,
"engines": {
"node": ">=8.11.0"
},
"dependencies": {
"@tensorflow/tfjs": "^1.3.2",
"@tensorflow/tfjs-node": "^1.3.2",
"@tensorflow/tfjs-node-gpu": "^1.3.2",
"@tensorflow/tfjs-vis": "^1.0.3",
"argparse": "^1.0.10",
"d3-selection": "^1.4.0",
"http-server": "^0.11.1",
"jimp": "0.6.0",
"lodash": "^4.17.13",
"mkdirp": "^0.5.1",
"terminal-image": "^0.1.2"
},
"scripts": {
"train": "node train.js",
"watch": "mkdir -p dist/models && cp -r models/decoder dist/models/ && cross-env NODE_ENV=development parcel client.html --no-hmr --open",
"download-data": "node download.js",
"build": "cross-env NODE_ENV=production parcel build client.html --no-minify --public-url ./",
"test": "node run_tests.js"
},
"devDependencies": {
"@babel/core": "^7.0.0-0",
"@babel/plugin-transform-runtime": "^7.1.0",
"babel-preset-env": "~1.6.1",
"clang-format": "~1.2.2",
"cross-env": "^5.2.0",
"parcel-bundler": "^1.12.1",
"yalc": "~1.0.0-pre.22"
}
}