-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.64 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
{
"name": "js-ml",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "concurrently \"yarn start:data\" \"yarn start:page\"",
"start:data": "hs data -p8080 --cors",
"start:page": "parcel mnist/index.html",
"build": "parcel build linear-regression/index.html -d build/linear-regression --public-url ./ && parcel build height-weight/index.html -d build/height-weight --public-url ./ && parcel build logistic-regression/index.html -d build/logistic-regression --public-url ./ && parcel build xor/index.html -d build/xor --public-url ./ && parcel build iris/index.html -d build/iris --public-url ./ && parcel build overfit/index.html -d build/overfit --public-url ./ && parcel build mnist/index.html -d build/mnist --public-url ./ && parcel build mobilenet/index.html -d build/mobilenet --public-url ./ && parcel build brand/index.html -d build/brand --public-url ./ && parcel build speech/index.html -d build/speech --public-url ./ && parcel build speech-cn/index.html -d build/speech-cn --public-url ./ && parcel build slider/index.html -d build/slider --public-url ./",
"deploy": "concurrently \"hs data -p8080 --cors\" \"hs build -p80 -o\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@tensorflow-models/speech-commands": "^0.5.4",
"@tensorflow/tfjs": "^3.6.0",
"@tensorflow/tfjs-node": "^3.6.1",
"@tensorflow/tfjs-vis": "^1.5.1"
},
"devDependencies": {
"concurrently": "^6.2.0",
"http-server": "^0.12.3",
"parcel-bundler": "^1.12.5"
},
"browserslist": [
"last 1 Chrome version"
]
}