-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 896 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
{
"devDependencies": {
"tailwindcss": "^3.2.2"
},
"dependencies": {
"alpinejs": "^3.10.5",
"esbuild": "^0.15.13",
"html5-qrcode": "^2.2.8",
"qr-scanner": "^1.4.1"
},
"name": "qrc_scanner",
"version": "1.0.0",
"description": "QR Code Scanner app",
"main": "src/app.js",
"scripts": {
"build": "npm run build-css && npm run build-js",
"build-css": "tailwindcss -i ./src/app.css -o ./assets/app.css -m",
"build-js": "npx esbuild ./src/app.js --outfile=./assets/app.js --bundle --minify",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Akhmami/web-qrcode-scanner.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Akhmami/web-qrcode-scanner/issues"
},
"homepage": "https://github.com/Akhmami/web-qrcode-scanner#readme"
}