-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.79 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
{
"name": "template",
"version": "0.0.0",
"private": "true",
"scripts": {
"build": "vite build",
"dev": "vite",
"preinstall": "npx only-allow pnpm",
"prepare": "is-ci || husky install",
"preview": "vite preview"
},
"commitlint": {
"extends": [
"@0x219"
]
},
"lint-staged": {
"*.{ts,tsx}": "eslint",
"*.{js,ts,tsx,md,html,css,json}": "prettier --write",
"!(*pnpm-lock).yaml": "prettier --write"
},
"dependencies": {
"@mediapipe/hands": "^0.4.1646424915",
"@mediapipe/pose": "^0.5.1635988162",
"@tensorflow-models/coco-ssd": "^2.2.2",
"@tensorflow-models/hand-pose-detection": "^2.0.0",
"@tensorflow-models/mobilenet": "^2.1.0",
"@tensorflow/tfjs-backend-cpu": "^3.21.0",
"@tensorflow/tfjs-backend-webgl": "^3.21.0",
"@tensorflow/tfjs-core": "^3.21.0",
"@types/styled-components": "^5.1.26",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-webcam": "^7.0.1",
"styled-components": "^5.3.6"
},
"devDependencies": {
"@0x219/commitlint-config": "1.0.2",
"@commitlint/cli": "17.0.3",
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "5.31.0",
"@typescript-eslint/parser": "5.31.0",
"@vitejs/plugin-legacy": "2.0.0",
"@vitejs/plugin-react": "2.0.0",
"eslint": "8.21.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "8.0.1",
"is-ci": "3.0.1",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"prettier-plugin-packagejson": "2.2.18",
"prettier-plugin-tailwindcss": "0.1.13",
"typescript": "4.7.4",
"vite": "3.0.4",
"vite-plugin-mkcert": "1.9.0",
"vite-tsconfig-paths": "3.5.0"
}
}