-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.73 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
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "brain-dancer",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build-client": "webpack",
"build-client-watch": "webpack -w",
"test": "echo \"Error: no test specified\" && exit 1",
"start-dev": "NODE_ENV='development' npm run build-client-watch & NODE_ENV='development' npm run start-server",
"start-server": "nodemon server -e html,js,scss --ignore public --ignore client",
"seed": "node script/seed.js",
"start": "node server",
"heroku-postbuild": "webpack -p"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brain-dance/brain-dancer.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/brain-dance/brain-dancer/issues"
},
"engines": {
"node": "12.10.0"
},
"homepage": "https://github.com/brain-dance/brain-dancer#readme",
"dependencies": {
"@babel/polyfill": "^7.7.0",
"@tensorflow-models/posenet": "^2.2.0",
"@tensorflow/tfjs": "^1.3.2",
"@tensorflow/tfjs-node": "^1.3.2",
"axios": "^0.19.0",
"babel-polyfill": "^6.26.0",
"canvas": "^2.6.0",
"chalk": "^3.0.0",
"compression": "^1.7.4",
"connect-session-sequelize": "^6.0.0",
"crypto": "^1.0.1",
"css-loader": "^3.2.0",
"express": "^4.17.1",
"express-session": "^1.17.0",
"faker": "^4.1.0",
"ffmpeg": "0.0.4",
"ffmpeg-extract-frames": "^2.0.2",
"fs": "0.0.1-security",
"glob": "^7.1.6",
"history": "^4.10.1",
"image-size": "^0.8.3",
"lodash": "^4.17.15",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"passport-google-oauth": "^2.0.0",
"path": "^0.12.7",
"pg": "^7.14.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-horizontal-scrolling-menu": "^0.7.3",
"react-redux": "^7.1.3",
"react-router-dom": "^5.1.2",
"react-video-js-player": "^1.1.1",
"react-webcam": "^4.0.0",
"recordrtc": "^5.5.8",
"redux": "^4.0.4",
"redux-devtools-extension": "^2.13.8",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"semantic-ui-react": "^0.88.1",
"sequelize": "^5.21.2",
"style-loader": "^1.0.0",
"uglify-js": ">=2.6.0",
"video-js": "^0.7.0",
"video-react": "^0.14.1",
"video.js": "^7.6.6",
"videojs": "^1.0.0",
"videojs-record": "^3.8.0",
"webrtc": "^1.14.1",
"webrtc-adapter": "^7.3.0"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/polyfill": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.7.0",
"@babel/register": "^7.4.0",
"babel-loader": "^8.0.5",
"parcel-bundler": "^1.12.4",
"react-app-rewired": "^2.1.5",
"video.js": "^7.6.6",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"worker-loader": "^2.0.0"
}
}