-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
96 lines (96 loc) · 3.18 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
96
{
"name": "face-detection-benchmark",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "nodemon ./dist/server.js",
"dev:server": "nodemon --exec babel-node ./server/index.js",
"dev": "webpack-dev-server --config ./webpack/webpack.dev.js",
"build": "rimraf ./dist && yarn build:server && yarn build:client",
"build:server": "webpack --config ./webpack/webpack.server.js --progress",
"build:client": "cross-env NODE_ENV=production webpack --config ./webpack/webpack.prod.js --progress"
},
"author": "Mirosław Ciastek <[email protected]>",
"dependencies": {
"@babel/runtime": "^7.0.0",
"@tensorflow/tfjs": "^0.13.0",
"classnames": "^2.2.5",
"express": "^4.16.3",
"face-api.js": "^0.13.0",
"ismobilejs": "^0.4.1",
"lit-html": "^0.9.0",
"lodash": "^4.17.10",
"materialize-css": "^1.0.0-rc.2",
"morgan": "^1.9.1",
"nodemon": "^1.18.4",
"normalize.css": "^7.0.0",
"opencv": "^6.0.0",
"opencv4nodejs": "^4.8.0",
"socket.io": "^2.1.1",
"socket.io-client": "^2.1.1",
"stats.js": "^0.17.0",
"tracking": "^1.1.3",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/core": "7.0.1",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-transform-async-to-generator": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.0.0",
"babel-eslint": "^8.0.2",
"babel-loader": "^8.0.2",
"babel-minify-webpack-plugin": "^0.3.0",
"babel-polyfill": "^6.26.0",
"circular-dependency-plugin": "^4.3.0",
"copy-webpack-plugin": "^4.3.0",
"cross-env": "^5.1.5",
"css-declaration-sorter": "^2.1.0",
"css-loader": "^0.28.11",
"css-mqpacker": "^6.0.1",
"dotenv": "^4.0.0",
"dotenv-webpack": "^1.5.4",
"eslint": "^5.6.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-standard": "^4.0.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.6",
"handlebars": "^4.0.11",
"handlebars-loader": "^1.7.0",
"html-webpack-inline-svg-plugin": "^1.2.4",
"html-webpack-plugin": "^3.0.6",
"imagemin-jpegoptim": "^5.1.0",
"imagemin-webpack-plugin": "^2.1.1",
"imports-loader": "^0.8.0",
"jpegoptim-bin": "^3.0.0",
"modernizr-webpack-plugin": "^1.0.7",
"node-sass": "^4.9.3",
"pngquant-bin": "^3.1.1",
"postcss-cssnext": "^3.0.2",
"postcss-loader": "^2.0.9",
"resolve-url-loader": "^2.2.1",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.6",
"standard": "^10.0.3",
"style-loader": "^0.20.3",
"stylelint": "^8.2.0",
"stylelint-config-standard": "^17.0.0",
"stylelint-order": "^0.7.0",
"stylelint-scss": "^2.1.0",
"svg-inline-loader": "^0.8.0",
"svgo": "^1.0.3",
"sw-precache-webpack-plugin": "^0.11.5",
"url-loader": "^1.0.1",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.12",
"webpack-dev-server": "^3.1.1",
"webpack-manifest-plugin": "^2.0.0-rc.2",
"webpack-merge": "^4.1.1",
"webpack-node-externals": "^1.7.2"
}
}