-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.32 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
{
"name": "facemask-detector-web",
"version": "1.0.0",
"description": "A web-based application for detecting facemask",
"scripts": {
"lint": "eslint --fix",
"clean": "gulp clean",
"build": "yarn lint && gulp build",
"watch": "gulp watch",
"serve": "live-server dist --port=8080 -host=127.0.0.1",
"start": "yarn build && npm-run-all --parallel serve watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jkguidaven/facemask-detector-web.git"
},
"author": "James Kenneth A. Guidaven",
"license": "MIT",
"bugs": {
"url": "https://github.com/jkguidaven/facemask-detector-web/issues"
},
"homepage": "https://github.com/jkguidaven/facemask-detector-web#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-es2015": "^6.24.1",
"babelify": "8",
"browserify": "^16.5.1",
"del": "^5.1.0",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"gulp": "^4.0.2",
"gulp-sourcemaps": "^2.6.5",
"gulp-uglify": "^3.0.2",
"live-server": "^1.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"tsify": "^4.0.1",
"typescript": "^3.9.3",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"dependencies": {
"babel-polyfill": "^6.26.0"
}
}