-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.42 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.42 KB
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": "npx 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.7.2",
"express": "^4.21.2"
},
"devDependencies": {
"autoprefixer": "^10.4.21",
"cssnano": "^7.0.6",
"husky": "^9.1.7",
"is-ci": "^4.1.0",
"postcss": "^8.5.3",
"postcss-cli": "^11.0.1",
"prettier": "^3.5.3",
"sass": "^1.86.0",
"terser": "^5.39.0"
}
}