-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.45 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
{
"name": "poseshare",
"version": "0.0.1",
"author": "Oliver Steele <[email protected]>",
"license": "MIT",
"scripts": {
"build": "vite build",
"check:client": "tsc --noEmit --esModuleInterop src/sketch.ts",
"check:server": "tsc --noEmit --esModuleInterop server/server.ts",
"check": "yarn check:client && yarn check:server",
"clean": "rimraf dist/*",
"start": "cross-env NODE_ENV=production ts-node ./server/server.ts",
"dev": "nodemon -w server ./server/server.ts"
},
"dependencies": {
"@mediapipe/pose": "^0.5.1635988162",
"@socket.io/admin-ui": "^0.2.0",
"@tensorflow-models/pose-detection": "^2.0.0",
"@tensorflow/tfjs-backend-wasm": "^4.10.0",
"@tensorflow/tfjs-backend-webgl": "^4.10.0",
"@tensorflow/tfjs-backend-webgpu": "^4.10.0",
"@tensorflow/tfjs-converter": "^4.10.0",
"@tensorflow/tfjs-core": "4.15.0",
"@types/stats": "^0.16.30",
"cross-env": "^7.0.3",
"d3": "^7.5.0",
"dat.gui": "^0.7.9",
"esbuild": "^0.14.48",
"events": "^3.3.0",
"express": "^4.18.1",
"nodemon": "^2.0.15",
"p5": "^1.4.1",
"socket.io": "^4.5.1",
"socket.io-client": "^4.5.1",
"stats-js": "^1.0.1",
"ts-node": "^10.7.0",
"typescript": "^4.6.4",
"vite": "^2.9.9"
},
"devDependencies": {
"@types/d3": "^7.4.0",
"@types/dat.gui": "^0.7.7",
"@types/express": "^4.17.13",
"@types/node": "^17.0.31",
"@types/p5": "^1.4.2",
"rimraf": "^5.0.0"
}
}