-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 859 Bytes
/
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
{
"name": "omeo",
"private": true,
"version": "1.0.0",
"scripts": {
"dev": "vite --host --port 8080",
"dev:force": "yarn dev --force",
"format": "prettier --ignore-path .gitignore --write .",
"build": "vite build",
"serve": "vite preview",
"postinstall": "husky install"
},
"lint-staged": {
"*.{js,ts,jsx,tsx,mdx,css,html,md,yml,json}": "yarn format"
},
"devDependencies": {
"husky": "^7.0.4",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"vite": "^2.9.7"
},
"dependencies": {
"@mediapipe/pose": "^0.5.1635988162",
"@obadakhalili/p5.play": "^1.0.0",
"@tensorflow-models/pose-detection": "^2.0.0",
"@tensorflow/tfjs-backend-webgl": "^3.17.0",
"@tensorflow/tfjs-converter": "^3.17.0",
"@tensorflow/tfjs-core": "^3.17.0",
"howler": "^2.2.3",
"p5": "^1.4.1"
}
}