forked from techtee-ltd/TensorFlow_Threejs_FaceMesh
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.33 KB
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
{
"name": "three.js-typescript-boilerplate",
"version": "1.0.0",
"description": "",
"scripts": {
"lint": "eslint .",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"build": "webpack --config ./src/client/webpack.prod.js",
"dev": "webpack serve --config ./src/client/webpack.dev.js",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node ./dist/server/server.js"
},
"author": "Sean Bradley",
"license": "ISC",
"devDependencies": {
"@types/dat.gui": "^0.7.7",
"@types/express": "^4.17.13",
"@types/node": "^18.14.4",
"@types/three": "^0.140.0",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.17.0",
"prettier": "^2.6.2",
"three": "^0.140.2",
"ts-loader": "^9.2.8",
"typescript": "^4.7.3",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@mediapipe/face_mesh": "^0.4.1633559619",
"@tensorflow-models/face-landmarks-detection": "^1.0.1",
"@tensorflow-models/facemesh": "0.0.5",
"@tensorflow/tfjs-backend-webgl": "^3.18.0",
"@tensorflow/tfjs-converter": "^3.18.0",
"@tensorflow/tfjs-core": "^3.18.0",
"crypto-browserify": "^3.12.0",
"express": "^4.18.1"
}
}