-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.45 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.45 KB
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
{
"main": "",
"name": "dgbstats",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@material-ui/data-grid": "^4.0.0-alpha.37",
"@mui/icons-material": "^5.11.11",
"@mui/lab": "^5.0.0-alpha.173",
"@mui/material": "^5.11.15",
"@mui/x-data-grid": "^6.2.0",
"@visx/event": "^3.0.1",
"@visx/geo": "^3.0.0",
"@visx/zoom": "^3.1.1",
"axios": "^1.3.5",
"chart.js": "^4.2.1",
"chartjs-adapter-luxon": "^1.3.1",
"cors": "^2.8.5",
"d3": "^7.8.4",
"d3-geo": "^3.1.0",
"date-fns": "^4.1.0",
"geoip-lite": "^1.4.7",
"luxon": "^3.3.0",
"react": "17.0.2",
"react-chartjs-2": "^5.2.0",
"react-dom": "17.0.2",
"react-router-dom": "^6.10.0",
"react-scripts": "^5.0.1",
"topojson-client": "^3.1.0",
"us-atlas": "^3.0.1",
"web-vitals": "^2.1.4",
"world-atlas": "^2.0.2"
},
"scripts": {
"start": "PORT=3005 react-scripts start",
"build": "NODE_ENV=production react-scripts build",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest watch",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:all": "npm run test:run && npm run test:e2e",
"test:clean": "./scripts/clean-test-data.sh",
"test:all:clean": "npm run test:all && npm run test:clean",
"posttest": "npm run test:clean",
"posttest:e2e": "npm run test:clean",
"eject": "react-scripts eject"
},
"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": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@playwright/test": "^1.52.0",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^12.1.5",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.6.1",
"@vitejs/plugin-react": "^4.5.0",
"@vitest/coverage-v8": "^1.6.1",
"@vitest/ui": "^1.6.1",
"axe-playwright": "^2.1.0",
"c8": "^9.1.0",
"happy-dom": "^13.10.1",
"jsdom": "^24.1.3",
"msw": "^2.8.4",
"vitest": "^1.6.1",
"vitest-canvas-mock": "^0.3.3"
}
}