-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
61 lines (61 loc) · 1.49 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
61
{
"name": "meething-ml-camera",
"version": "1.0.0",
"description": "",
"author": "",
"license": "(MIT OR Apache-2.0)",
"dependencies": {
"@babel/runtime": "^7.9.6",
"@tensorflow-models/facemesh": "^0.0.1",
"@tensorflow-models/posenet": "^2.2.1",
"@tensorflow/tfjs": "^1.7.4",
"@tensorflow/tfjs-converter": "^1.7.4",
"@tensorflow/tfjs-core": "^1.7.4",
"face-api.js": "^0.22.2",
"paper": "^0.12.7",
"stats.js": "^1.0.0"
},
"scripts": {
"start": "parcel cam.html --no-source-maps",
"build": "NODE_ENV=production parcel build cam.html --no-source-maps -o index.html",
"lint": "eslint .",
"link-local": "yalc link"
},
"browser": {
"crypto": false
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-transform-runtime": "^7.9.6",
"babel-core": "^6.26.3",
"babel-plugin-transform-runtime": "~6.23.0",
"babel-polyfill": "~6.26.0",
"babel-preset-env": "~1.6.1",
"babel-preset-es2017": "^6.24.1",
"clang-format": "~1.2.2",
"cross-env": "^5.2.0",
"cssnano": "^4.1.10",
"dat.gui": "^0.7.2",
"eslint": "^4.19.1",
"eslint-config-google": "^0.9.1",
"parcel-bundler": "~1.12.4",
"yalc": "~1.0.0-pre.27"
},
"eslintConfig": {
"extends": "google",
"rules": {
"require-jsdoc": 0,
"valid-jsdoc": 0
},
"env": {
"es6": true
},
"parserOptions": {
"ecmaVersion": 8,
"sourceType": "module"
}
},
"eslintIgnore": [
"dist/"
]
}