-
Notifications
You must be signed in to change notification settings - Fork 135
/
package.json
98 lines (98 loc) · 2.63 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
90
91
92
93
94
95
96
97
98
{
"name": "dgca-issuance-web",
"version": "0.1.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.3",
"@react-keycloak/web": "^3.4.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/bignumber.js": "^5.0.0",
"@types/cbor": "^5.0.1",
"@types/crypto-js": "^4.0.1",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/qrcode.react": "^1.0.1",
"@types/react": "^17.0.0",
"@types/react-datepicker": "^3.1.8",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.7",
"axios": "^0.21.1",
"bignumber.js": "^9.0.1",
"bootstrap": "^4.6.0",
"browserify-zlib": "^0.2.0",
"cbor": "^7.0.5",
"crypto-js": "^4.0.0",
"generate-license-file": "^1.1.0",
"husky": "^5.1.3",
"i18next": "^19.9.2",
"i18next-resource-store-loader": "^0.1.2",
"iso-3166-1-alpha-2": "^1.0.0",
"json-schema-to-typescript": "^10.1.4",
"jsonschema": "^1.4.0",
"jspdf": "^2.3.1",
"keycloak-js": "^10.0.1",
"lint-staged": "^10.5.4",
"moment": "^2.29.1",
"node-inspect-extracted": "^1.0.5",
"node-sass": "^5.0.0",
"prettier": "^2.2.1",
"qrcode.react": "^1.0.1",
"react": "^17.0.1",
"react-bootstrap": "^1.5.2",
"react-datepicker": "^3.7.0",
"react-dom": "^17.0.1",
"react-i18next": "^11.8.10",
"react-moment": "^1.1.1",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"typescript": "^4.1.2",
"web-vitals": "^1.0.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"proxy": "http://localhost:8080",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"license": "generate-license-file --input package.json --output THIRD-PARTY-NOTICES",
"dgcs2ts": "json2ts -i public/DGC.combined-schema.json -o src/generated-files/dgc-combined-schema.d.ts"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@types/react-qr-reader": "^2.1.3",
"http-proxy-middleware": "^1.1.1",
"https-proxy-agent": "^5.0.0"
}
}