forked from tr7zw/teachablemachine-node-example
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 801 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 801 Bytes
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
{
"name": "teachable_machine_node_demo",
"version": "1.0.0",
"description": "A demonstration of using Teachable Machine, which is intended to run in the browser, in Node",
"main": "app.js",
"scripts": {
"start": "node app.js"
},
"author": "skyebot",
"license": "DWYWL",
"dependencies": {
"@teachablemachine/image": "^0.8.4",
"@tensorflow/tfjs": "^1.3.1",
"@tensorflow/tfjs-node": "^0.1.9",
"body-parser": "^1.19.0",
"canvas": "^2.6.0",
"express": "^4.17.1",
"jsdom": "^15.2.1",
"node-fetch": "^2.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/drinkspiller/teachablemachine-node-example.git"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0"
}
}