-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.29 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.29 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
43
44
45
46
{
"name": "face-babylon",
"version": "0.4.0",
"private": true,
"title": "Face Tracking Demo",
"description": "Geenee face tracking demo",
"dependencies": {
"@babylonjs/core": "^5.38.1",
"@babylonjs/loaders": "^5.38.1",
"@geenee/bodyrenderers-babylon": "^0.4.0"
},
"devDependencies": {
"@types/node": "^14.18.5",
"copy-webpack-plugin": "^11.0.0",
"copyfiles": "^2.4.1",
"css-loader": "^6.7.1",
"esbuild-loader": "^2.20.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.1",
"serve": "^14.1.2",
"typescript": "^4.5.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"scripts": {
"start": "webpack serve --mode=development",
"start:https": "webpack serve --mode=development --https",
"build": "webpack build --mode=production",
"serve": "serve -p 3000 -s build",
"postinstall": "npm run post:wasm",
"post:wasm": "copyfiles -f \"node_modules/@geenee/bodytracking/dist/*.wasm\" public/"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}