-
-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
37 lines (37 loc) · 922 Bytes
/
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
{
"name": "qr-code-scanner",
"description": "QR Code Scanner is the fastest and most user-friendly progressive web application.",
"version": "1.0.2",
"scripts": {
"build": "NODE_ENV=production rollup -c",
"watch": "rollup -c -w",
"start": "npm-run-all --parallel serve watch",
"serve": "rollup -c && serve public",
"precommit": "lint-staged",
"pretty": "prettier --write 'src'"
},
"lint-staged": {
"*.{js,css,html}": [
"npm run pretty",
"git add"
]
},
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"cross-env": "^7.0.3",
"gh-pages": "^3.2.1",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.1",
"rollup": "^2.52.1",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-sizes": "^1.0.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-workbox": "^6.1.1",
"serve": "^12.0.0"
}
}