-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 962 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 962 Bytes
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-maker",
"version": "1.0.0",
"description": "A customizable QR code generator with image upload functionality.",
"main": "src/app.js",
"scripts": {
"start": "node src/app.js",
"dev": "node src/app.js",
"build:web": "vite build",
"build": "echo 'Build step not defined'",
"build:container": "podman build -t qr-code-maker .",
"run:container": "podman run -p 5610:5610 qr-code-maker",
"compose:build": "podman-compose build --no-cache",
"compose:up": "podman-compose up -d",
"compose:down": "podman-compose down",
"test": "echo 'Test step not defined'"
},
"dependencies": {
"compression": "^1.8.1",
"express": "^4.17.1",
"qr-code-styling": "^1.9.2"
},
"devDependencies": {
"nodemon": "^2.0.7",
"vite": "^5.4.11"
},
"keywords": [
"qr",
"code",
"generator",
"customizable",
"image",
"upload"
],
"author": "Your Name",
"license": "MIT"
}