forked from tensorflow/tfjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 988 Bytes
/
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
{
"name": "automl-img-classification-demo",
"version": "0.0.1",
"private": true,
"description": "Image classification demo using the AutoML NPM library",
"main": "index.js",
"browserslist": "> 0.25%, not dead",
"scripts": {
"watch": "cross-env NODE_ENV=development parcel index.html --no-hmr --open ",
"build": "cross-env NODE_ENV=production parcel build index.html --public-url ./"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-transform-runtime": "~6.23.0",
"babel-polyfill": "~6.26.0",
"babel-preset-env": "~1.6.1",
"clang-format": "~1.2.2",
"cross-env": "^5.2.0",
"parcel": "~2.3.2",
"yalc": "~1.0.0-pre.27"
},
"dependencies": {
"@tensorflow/tfjs-automl": "file:../../dist",
"@tensorflow/tfjs-backend-webgl": "^3.0.0-rc.1",
"@tensorflow/tfjs-converter": "^3.0.0-rc.1",
"@tensorflow/tfjs-core": "^3.0.0-rc.1"
},
"resolutions": {
"minimist": "1.2.6"
},
"license": "Apache-2.0"
}