forked from tensorflow/tfjs-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1 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
{
"name": "data-generator",
"version": "0.1.0",
"description": "Demonstrates how to use basic dataset API, including fitting a model",
"main": "index.js",
"license": "Apache-2.0",
"dependencies": {
"@babel/plugin-transform-runtime": "^7.2.0",
"@tensorflow/tfjs": "^2.8.2",
"@tensorflow/tfjs-vis": "^1.4.3"
},
"scripts": {
"link-local": "yalc link",
"watch": "cross-env NODE_ENV=development parcel index.html --no-hmr --open",
"build": "cross-env NODE_ENV=production parcel build index.html --no-minify --public-url ./"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"clang-format": "^1.2.4",
"cross-env": "^5.2.0",
"parcel-bundler": "^1.12.5",
"ts-node": "^7.0.1",
"tslint": "^5.12.0",
"typescript": "^3.2.2",
"yalc": "^1.0.0-pre.50"
},
"resolutions": {
"is-svg": "4.3.1",
"node-fetch": "2.6.1",
"vega": "5.17.3"
}
}