-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.13 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
{
"name": "facemesh_demo",
"version": "0.0.1",
"description": "",
"main": "index.js",
"license": "Apache-2.0",
"private": true,
"engines": {
"node": ">=8.9.0"
},
"dependencies": {
"@tensorflow-models/facemesh": "0.0.1",
"@tensorflow/tfjs-backend-wasm": "^1.5.2-alpha1",
"@tensorflow/tfjs-converter": "^1.6.1",
"@tensorflow/tfjs-core": "^1.6.1",
"@types/dat.gui": "^0.7.5",
"@types/stats": "^0.16.30",
"dat.gui": "^0.7.7",
"stats": "^1.0.0",
"stats.js": "^0.17.0",
"three": "^0.118.3"
},
"scripts": {
"watch": "cross-env NODE_ENV=development parcel index.html --no-hmr --target browser"
},
"browser": {
"crypto": false
},
"devDependencies": {
"cross-env": "^5.2.0",
"eslint": "^4.19.1",
"eslint-config-google": "^0.9.1",
"parcel-bundler": "^1.12.4",
"typescript": "^3.9.7"
},
"eslintConfig": {
"extends": "google",
"rules": {
"require-jsdoc": 0,
"valid-jsdoc": 0
},
"env": {
"es6": true
},
"parserOptions": {
"ecmaVersion": 8,
"sourceType": "module"
}
},
"eslintIgnore": [
"dist/"
]
}