-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (76 loc) · 2.1 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "anti",
"version": "0.0.1",
"description": "",
"main": "index.js",
"license": "Apache-2.0",
"private": true,
"engines": {
"node": ">=8.9.0"
},
"dependencies": {
"@mediapipe/face_mesh": "~0.4.0",
"@tensorflow-models/face-detection": "~1.0.0",
"@tensorflow-models/face-landmarks-detection": "file:../dist",
"@tensorflow/tfjs-backend-wasm": "^3.12.0",
"@tensorflow/tfjs-backend-webgl": "^3.12.0",
"@tensorflow/tfjs-converter": "^3.12.0",
"@tensorflow/tfjs-core": "^3.12.0",
"scatter-gl": "0.0.8",
"@tweenjs/tween.js": "^18.6.4",
"blink-detection": "^1.1.3",
"delaunator": "^5.0.0",
"perlin-noise-3d": "^0.5.4",
"stats.js": "^0.17.0",
"three": "^0.131.3",
"tone": "^14.7.77",
"tweenjs": "^1.0.2"
},
"scripts": {
"watch": "cross-env NODE_ENV=development parcel index.html --no-hmr --open",
"build": "cross-env NODE_ENV=production parcel build index.html --public-url ./ && cp -r audio dist && cp -r img dist && cp -r fonts dist && cp -r txt dist",
"build-deps": "yarn build-model && yarn build",
"build-model": "cd .. && yarn && yarn build-npm",
"lint": "eslint .",
"link-local": "yalc link @tensorflow-models/face-landmarks-detection",
"deployar": "cross-env NODE_ENV=production parcel build anti/index.html ./",
"limpiar": "sudo rm -r dist node_modules"
},
"browser": {
"crypto": false
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.7.6",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"clang-format": "~1.2.2",
"cross-env": "^5.2.0",
"eslint": "^4.19.1",
"eslint-config-google": "^0.9.1",
"parcel-bundler": "1.12.5",
"parcel-plugin-static-files-copy": "^2.5.1",
"yalc": "~1.0.0-pre.50"
},
"resolutions": {
"is-svg": "4.3.1"
},
"eslintConfig": {
"extends": "google",
"rules": {
"require-jsdoc": 0,
"valid-jsdoc": 0
},
"env": {
"es6": true
},
"parserOptions": {
"ecmaVersion": 8,
"sourceType": "module"
}
},
"eslintIgnore": [
"dist/"
]
}