forked from clawfire/covid19-passbook-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.59 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
{
"name": "covid19-passbook-generator",
"version": "2.2.0",
"description": "A simple PWA to scan your EU digital COVID Certificate and generate a passbook from it",
"main": "index.html",
"repository": "git@github.com:clawfire/covid19-passbook-generator.git",
"author": "Thibault Milan <hello@thibaultmilan.com>",
"license": "NoHarm-draft",
"private": false,
"dependencies": {
"@pathcheck/dcc-sdk": "^0.0.21",
"file-saver": "^2.0.5",
"handlebars": "^4.7.7",
"iso-3166-1": "^2.0.1",
"jszip": "^3.7.1",
"lodash.debounce": "^4.0.8",
"node-fetch": "^2.6.1",
"octokit": "^1.1.0",
"parcel-bundler": "^1.12.5",
"qr-scanner": "^1.3.0",
"ua-parser-js": "^0.7.31"
},
"devDependencies": {
"sass": "^1.34.1"
},
"scripts": {
"start": "npx parcel serve src/*.html --https && cp node_modules/qr-scanner/qr-scanner-worker.min.js dist/qr-scanner-worker.min.js",
"start-netlify-dev": "npx parcel serve src/*.html && cp node_modules/qr-scanner/qr-scanner-worker.min.js dist/qr-scanner-worker.min.js",
"deploy-preview": "npx parcel build src/*.html && cp node_modules/qr-scanner/qr-scanner-worker.min.js dist/qr-scanner-worker.min.js",
"build": "npx parcel build src/*.html && cp node_modules/qr-scanner/qr-scanner-worker.min.js dist/qr-scanner-worker.min.js"
},
"browserslist": [
"last 3 and_chr versions",
"last 3 chrome versions",
"last 3 opera versions",
"last 3 ios_saf versions",
"last 3 safari versions"
]
}