forked from hellochar/hellochar.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 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
{
"name": "hellochar.com",
"version": "2.0.0",
"private": true,
"engines": {
"yarn": "^1.3.0"
},
"scripts": {
"build": "webpack --config webpack.dev.js",
"kiosk": "npm-run-all -s kiosk:build kiosk:server",
"kiosk:build": "cross-env KIOSK=true npm-run-all prod:build",
"kiosk:server": "node ./openpose_kiosk/server.js --kiosk",
"prod": "npm-run-all -p prod:build prod:server",
"prod:build": "webpack --config webpack.prod.js",
"prod:server": "node ./bin/www",
"start": "webpack-dev-server --open --config webpack.dev.js",
"stats": "webpack --config webpack.dev.js --profile --json > stats.json"
},
"dependencies": {
"@types/classnames": "^2.2.3",
"@types/dat.gui": "^0.7.2",
"@types/google.analytics": "^0.0.39",
"@types/jquery": "^3.2.9",
"@types/pathfinding": "^0.0.2",
"@types/query-string": "^4.3.1",
"@types/react": "^16.0.31",
"@types/react-dom": "^16.0.3",
"@types/react-icons": "^2.2.5",
"@types/react-lazyload": "^2.3.0",
"@types/react-router-dom": "^4.2.3",
"@types/react-transition-group": "^2.0.7",
"@types/socket.io-client": "^1.4.32",
"@types/three": "^0.92.17",
"@types/webpack-env": "^1.13.5",
"alpha-complex": "^1.0.0",
"body-parser": "~1.8.1",
"classnames": "^2.2.5",
"cookie-parser": "~1.3.3",
"cross-env": "^5.2.0",
"css-loader": "^0.28.4",
"dat.gui": "^0.7.6",
"delaunator": "^2.0.0",
"es6-shim": "^0.35.3",
"exports-loader": "^0.6.4",
"express": "~4.9.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-inline-source-plugin": "^0.0.10",
"html-webpack-plugin": "^3.0.0",
"imports-loader": "^0.7.1",
"jquery": "^3.2.1",
"leapjs": "^0.6.4",
"mini-css-extract-plugin": "^0.2.0",
"morgan": ">=1.9.1",
"node-sass": "^6.0.1",
"normalize.css": "^8.0.0",
"npm-run-all": "^4.0.2",
"pathfinding": "^0.4.18",
"postcss-loader": "^2.1.3",
"query-string": "^5.0.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-ga": "^2.3.5",
"react-icons": "^2.2.7",
"react-lazyload": "^2.3.0",
"react-router-dom": "^4.1.2",
"react-router-hash-link": "^1.1.0",
"react-transition-group": "^2.2.1",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.6",
"serve-favicon": "~2.1.3",
"socket.io": "^2.1.1",
"socket.io-client": "^2.1.1",
"style-loader": "^0.20.0",
"three": "^0.95.0",
"ts-loader": "^4.0.0",
"typescript": "^3.0.0",
"webpack": "^4.2.0",
"webpack-bundle-analyzer": "3.3.2",
"webpack-cli": "^2.0.13",
"webpack-dev-server": "^3.0.0",
"webpack-glsl-loader": "^1.0.1",
"webpack-merge": "^4.1.1",
"worker-loader": "^1.1.0"
},
"devDependencies": {
"tslint": "^5.8.0"
}
}