-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.05 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.05 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
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
{
"name": "cam",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint . --ext=js,jsx --config .eslintconfig;",
"lint:fix": "eslint . --ext=js,jsx --fix --config .eslintconfig;"
},
"dependencies": {
"@apollo/client": "3.4.1",
"@fingerprintjs/fingerprintjs": "3.3.0",
"@reduxjs/toolkit": "1.6.0",
"@tensorflow-models/coco-ssd": "2.2.2",
"@tensorflow/tfjs-backend-cpu": "3.7.0",
"@tensorflow/tfjs-backend-webgl": "3.7.0",
"@tensorflow/tfjs-converter": "3.7.0",
"@tensorflow/tfjs-core": "3.7.0",
"graphql": "15.5.1",
"lodash": "4.17.21",
"prop-types": "15.7.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-ga": "3.3.0",
"react-redux": "7.2.4",
"react-scripts": "4.0.3",
"react-webcam": "5.2.4",
"redux-observable": "2.0.0-rc.2",
"rxjs": "7.1.0",
"web-vitals": "0.2.4",
"workbox-background-sync": "5.1.3",
"workbox-broadcast-update": "5.1.3",
"workbox-cacheable-response": "5.1.3",
"workbox-core": "5.1.3",
"workbox-expiration": "5.1.3",
"workbox-google-analytics": "5.1.3",
"workbox-navigation-preload": "5.1.3",
"workbox-precaching": "5.1.3",
"workbox-range-requests": "5.1.3",
"workbox-routing": "5.1.3",
"workbox-strategies": "5.1.3",
"workbox-streams": "5.1.3"
},
"devDependencies": {
"babel-eslint": "10.1.0",
"eslint": "7.28.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-react": "7.24.0",
"eslint-plugin-react-hooks": "4.2.0"
},
"engines": {
"node": "14.17"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}