-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 2.84 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
99
100
101
102
103
104
105
106
{
"name": "personal_site_react",
"version": "1.0.0",
"private": true,
"homepage": "https://danielhstahl.github.io",
"devDependencies": {
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^14.1.0",
"@testing-library/user-event": "^14.5.2",
"gh-pages": "^6.1.1",
"husky": "^8.0.3",
"js-yaml": "^4.1.0",
"lint-staged": "^15.2.9",
"prettier": "^3.2.1",
"web-vitals": "^2.1.4"
},
"dependencies": {
"@ant-design/colors": "^7.0.2",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.0",
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"antd": "^5.13.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router-dom": "^6.21.2",
"react-scripts": "^5.0.1",
"victory": "^36.8.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,json,css,tsx}": [
"prettier --single-quote --write --no-semi",
"git add"
]
},
"swagger_urls": [
"https://cdn.jsdelivr.net/gh/danielhstahl/credit_faas@v0.0.16/docs/openapi_merged.yml",
"https://cdn.jsdelivr.net/gh/danielhstahl/ops_faas@v0.0.17/docs/openapi_merged.yml",
"https://cdn.jsdelivr.net/gh/danielhstahl/market_faas@v0.0.19/docs/openapi_merged.yml"
],
"pdf_urls": [
{
"url": "https://github.com/danielhstahl/CreditRiskPaper/releases/download/0.1.0/main.pdf",
"name": "CreditRiskPaper"
},
{
"url": "https://github.com/danielhstahl/OpsRiskPaper/releases/download/0.3.2/main.pdf",
"name": "OpsRiskPaper"
},
{
"url": "https://github.com/danielhstahl/PaperMarketRisk/releases/download/0.4.0/MarketRiskDocumentation.pdf",
"name": "MarketRiskDocumentation"
},
{
"url": "https://github.com/danielhstahl/CreditRiskExtensions/releases/download/0.1.0/main.pdf",
"name": "CreditRiskExtensions"
},
{
"url": "https://github.com/danielhstahl/ProspectTheory/releases/download/1.1.3/main.pdf",
"name": "ExpectedUtility"
}
],
"eslintConfig": {
"extends": "react-app",
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"get_pdf": "node ./scripts/downloadPdf"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!src/components/generatedComponents/*",
"!src/setupTests.js",
"!src/serviceWorker.js",
"!src/index.js",
"!src/**/*.stories.js"
]
}
}