-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.44 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
{
"name": "camic",
"version": "0.0.1",
"description": "Camic - Test your camera and microphone online",
"main": "app.js",
"private": true,
"scripts": {
"start": "webpack-dev-server --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"lint": "eslint -c .eslintrc.js . --ext .js",
"prettier": "npx prettier --write .",
"deploy": "rm -rf dist && npm run build && cd dist && git init && git add . && git commit -m \"Initial commit\" && git remote add origin git@github.com:gangadharjannu/camic.git && git push --force origin master:gh-pages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gangadharjannu/camic.git"
},
"keywords": [],
"author": "Gangadhar Jannu",
"license": "ISC",
"bugs": {
"url": "https://github.com/gangadharjannu/camic/issues"
},
"homepage": "https://github.com/gangadharjannu/camic#readme",
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.3",
"css-loader": "^4.0.0",
"eslint": "^7.5.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"html-webpack-plugin": "^4.3.0",
"http-server": "^0.12.3",
"mini-css-extract-plugin": "^0.9.0",
"prettier": "2.0.5",
"style-loader": "^1.2.1",
"webpack": "^4.44.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.0.9"
}
}