-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
42 lines (42 loc) · 1.42 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
{
"name": "qrcodes",
"version": "1.0.0",
"description": "A Simple QR Code Generator Web Application! Generate as well as download QR codes for anything real quick!",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"dev": "nodemon server.js",
"sass": "sass --watch --no-source-map public/css/style.scss:public/css/style.css",
"post": "postcss public/css/style.css -u autoprefixer cssnano -o public/css/output.css --no-map --watch",
"minjs": "terser public/js/app.js public/js/scanner.js -c -m -o public/js/minified/prod.min.js",
"prod": "terser public/js/app.js public/js/scanner.js -c -m -o public/js/minified/prod.min.js && prettier --write . && git add -A .",
"prepare": "is-ci || husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/murtuzaalisurti/qr.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/murtuzaalisurti/qr/issues"
},
"homepage": "https://github.com/murtuzaalisurti/qr#readme",
"dependencies": {
"@fortawesome/fontawesome-free": "^6.6.0",
"express": "^4.19.2"
},
"devDependencies": {
"autoprefixer": "^10.4.20",
"cssnano": "^7.0.5",
"husky": "^9.1.5",
"is-ci": "^3.0.1",
"postcss": "^8.4.42",
"postcss-cli": "^11.0.0",
"prettier": "^3.3.3",
"sass": "^1.77.8",
"terser": "^5.31.6"
}
}