-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.7 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
{
"name": "foerderfunke-react-app",
"version": "0.1.0",
"private": true,
"homepage": "https://foerderfunke.org/",
"dependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/plugin-transform-private-property-in-object": "^7.24.7",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@foerderfunke/matching-engine": "^0.7.4",
"@mui/icons-material": "^5.15.19",
"@mui/material": "^5.15.19",
"@mui/x-charts": "^7.6.2",
"@mui/x-date-pickers": "^7.13.0",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^13.5.0",
"axios": "^1.7.2",
"dayjs": "^1.11.13",
"lodash": "^4.17.21",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^9.0.1",
"react-router-dom": "^6.23.1",
"react-scripts": "5.0.1",
"web-vitals": "^2.1.4",
"zustand": "^4.5.2"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build && echo 'foerderfunke.org' > build/CNAME",
"test": "react-app-rewired test --collect-coverage --watchAll=false",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"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"
]
},
"devDependencies": {
"@emotion/jest": "^11.13.0",
"babel-jest": "^29.7.0",
"gh-pages": "^6.1.1",
"react-app-rewired": "^2.2.1"
}
}