-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.19 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "react-posenet",
"version": "0.1.7",
"main": "dist/index.js",
"scripts": {
"build": "rollup --config",
"lint": "eslint --ext md --ext js src docs",
"start": "styleguidist server",
"docs:build": "styleguidist build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yoyota/react-posenet.git"
},
"author": "yoyota",
"license": "MIT",
"keywords": [
"react",
"tfjs",
"posenet"
],
"bugs": {
"url": "https://github.com/yoyota/react-posenet/issues"
},
"homepage": "https://github.com/yoyota/react-posenet#readme",
"dependencies": {
"@tensorflow-models/posenet": "^2.2.1",
"@tensorflow/tfjs": "^1.7.4",
"@tensorflow/tfjs-core": "^1.7.4",
"await-to-js": "^2.1.1",
"regenerator-runtime": "^0.13.5",
"use-user-media": "^0.1.7"
},
"peerDependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"babel-loader": "^8.1.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^22.21.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-markdown": "^1.0.2",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": "^7.0.4",
"jest": "^24.9.0",
"lint-staged": "^12.1.2",
"prettier": "^1.19.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-styleguidist": "^10.6.2",
"rollup": "^1.32.1",
"rollup-plugin-async": "^1.2.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.3",
"rollup-plugin-terser": "^5.3.0",
"webpack": "^4.43.0"
},
"husky":{
"hooks":{
"pre-commit":"lint-staged"
}
},
"lint-staged":{
"*.{js,json,css,md,html}":[
"prettier --single-quote --write",
"git add"
]
}
}