forked from code-kotis/qr-code-scanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.25 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
{
"name": "qr-code-scanner",
"description": "QR Code Scanner is the fastest and most user-friendly web application.",
"version": "1.0.0",
"scripts": {
"start": "webpack-dev-server --hot --inline --open --mode=development",
"build": "cross-env NODE_ENV=production webpack-cli --mode=production --config webpack.config.js",
"stats": "cross-env NODE_ENV=production webpack-cli --mode=production --profile --json > stats.json",
"precommit": "lint-staged",
"pretty": "prettier --write 'app/**/*.js'"
},
"lint-staged": {
"*.{js,css}": [
"npm run pretty",
"git add"
]
},
"engines": {
"node": ">=4.1.1"
},
"dependencies": {
"is-url": "^1.2.4"
},
"devDependencies": {
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.3",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.1.2",
"lint-staged": "^7.3.0",
"mini-css-extract-plugin": "^0.4.4",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"prettier": "^1.14.3",
"sitemap-webpack-plugin": "^0.8.0",
"style-loader": "^0.23.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9",
"workbox-webpack-plugin": "^3.6.2"
}
}