-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.75 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "covid-validator",
"description": "Check EU Digitial Covid Certificates with ease and validate them against local or country rules.",
"version": "1.3.0",
"main": "N/A",
"repository": "https://github.com/timokoenig/covid-validator",
"author": "Timo Koenig <[email protected]>",
"license": "Apache-2.0",
"private": false,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"export": "next build && next export",
"format": "prettier --write \"./**/*.{ts,tsx}\"",
"lint": "eslint \"**/*.{ts,tsx}\" \"*.config.js\"",
"now-build": "cross-env BUILD_TARGET=serverless next build",
"test": "jest --silent",
"type-check": "tsc --noEmit",
"snapshot-update": "jest --updateSnapshot --silent"
},
"dependencies": {
"@chakra-ui/icons": "^1.1.1",
"@chakra-ui/react": "^1.7.2",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@fidm/x509": "^1.2.1",
"@types/lodash": "^4.14.178",
"base45": "^2.0.1",
"bignumber.js": "^9.0.2",
"cbor": "^8.1.0",
"certlogic-js": "^1.1.2",
"cose-js": "^0.8.3",
"emotion-theming": "^11.0.0",
"flag-icons": "^6.0.3",
"framer-motion": "^4",
"html-react-parser": "^1.4.8",
"i18next": "^21.6.10",
"i18next-browser-languagedetector": "^6.1.3",
"jpeg-js": "^0.4.3",
"jsqr": "^1.4.0",
"lodash.debounce": "^4.0.8",
"moment": "^2.29.1",
"moment-timezone": "^0.5.34",
"net": "^1.0.2",
"next": "^12.1.0",
"next-pwa": "^5.4.4",
"node-inspect-extracted": "^1.0.8",
"nprogress": "^0.2.0",
"pako": "^2.0.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-i18next": "^11.15.3",
"react-qr-code": "^2.0.3",
"react-webcam": "^6.0.1",
"simpler-state": "^1.0.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/eslint-plugin": "^7.14.5",
"@types/base45": "^2.0.0",
"@types/cose-js": "^0.8.0",
"@types/jest": "^27.4.0",
"@types/node": "^14.14.17",
"@types/pako": "^1.0.3",
"@types/react": "^17.0.15",
"@types/react-dom": "^17.0.9",
"@types/react-test-renderer": "^17.0.1",
"@types/styled-jsx": "^2.2.9",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"cross-env": "^7.0.3",
"eslint": "7.32.0",
"eslint-config-kentcdodds": "^19.1.1",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"jest": "^27.5.1",
"prettier": "^2.3.2",
"react-test-renderer": "^17.0.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.5.0",
"typescript": "^4.5.2"
}
}