-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.39 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "plastic-waste-profiling",
"version": "0.0.1",
"description": "PWP Object Detection",
"main": "index.js",
"engines": {
"node": "8.x.x",
"npm": "6.4.1",
"yarn": "1.x"
},
"dependencies": {
"@tensorflow/tfjs": "0.13.3",
"animate.css": "^3.7.0",
"firebase": "^5.8.1",
"jquery": "^3.3.1",
"parcel": "^1.11.0",
"popper.js": "^1.14.7",
"resize-image": "^0.1.0"
},
"scripts": {
"dev": "NODE_ENV=development parcel ssd/index.html ssd/dashboard.html --no-hmr --open ",
"heroku-postbuild":"parcel build ssd/index.html ssd/dashboard.html --out-dir docs --public-url ./",
"start":"parcel ssd/index.html --out-dir docs"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-transform-runtime": "~6.23.0",
"babel-polyfill": "~6.26.0",
"babel-preset-env": "~1.7.0",
"babel-runtime": "~6.26.0",
"clang-format": "~1.2.2",
"google-charts": "^2.0.0",
"parcel-bundler": "~1.10.3"
},
"babel": {
"presets": [
[
"env",
{
"modules": false,
"targets": {
"browsers": [
"> 1%",
"last 3 versions",
"ie >= 9",
"ios >= 8",
"android >= 4.2"
]
},
"useBuiltIns": false
}
]
],
"plugins": [
[
"transform-runtime"
]
]
}
}