-
Notifications
You must be signed in to change notification settings - Fork 160
/
package.json
45 lines (45 loc) · 1.04 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
41
42
43
44
45
{
"name": "cl-teachable-machine-boilerplate",
"version": "0.1.0",
"license": "",
"dependencies": {
"@babel/polyfill": "^7.0.0",
"@tensorflow-models/knn-classifier": "^0.2.2",
"@tensorflow-models/mobilenet": "^0.2.2",
"@tensorflow/tfjs": "^0.13.0"
},
"scripts": {
"start": "budo main.js:dist/build.js --live --host localhost",
"build": "browserify main.js -o dist/build.js"
},
"pre-commit": [
"build"
],
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
],
"plugins": [
"syntax-async-functions",
"transform-regenerator"
]
}
]
]
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.0.15",
"babelify": "^8.0.0",
"budo": "^10.0.4",
"pre-commit": "^1.2.2"
}
}