-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.39 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 3.39 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "Stop-tracker",
"version": "3.0.0",
"private": true,
"dependencies": {
"@babel/runtime": "^7.21.0",
"@capacitor/app": "^6.0.0",
"@capacitor/core": "^6.0.0",
"@capacitor/filesystem": "^6.0.0",
"@capacitor/share": "^6.0.0",
"@headlessui/react": "^1.7.18",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-select": "^2.2.6",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@use-gesture/react": "^10.3.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"date-fns": "^2.30.0",
"embla-carousel-react": "^8.6.0",
"firebase": "^11.5.0",
"framer-motion": "^12.7.4",
"idb": "^8.0.3",
"jspdf": "^3.0.3",
"jspdf-autotable": "^5.0.2",
"lodash": "^4.17.21",
"lucide-react": "^0.284.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.16.0",
"react-scripts": "5.0.1",
"react-swipeable": "^7.0.2",
"react-window": "^2.2.1",
"recharts": "^2.8.0",
"tailwind-merge": "^1.14.0",
"tailwindcss": "^3.3.3",
"web-vitals": "^2.1.4"
},
"scripts": {
"prestart": "node package-audit-fix.js",
"prebuild": "node package-audit-fix.js",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"e2e": "playwright test",
"e2e:ui": "playwright test --ui",
"eject": "react-scripts eject",
"security-patch": "node patch-vulnerabilities.js",
"postinstall": "npm run security-patch && npm dedupe && node package-audit-fix.js",
"dedupe": "npm dedupe",
"force-patch": "node force-patch.js",
"audit-fix": "node package-audit-fix.js"
},
"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"
]
},
"resolutions": {
"nth-check": "^2.0.1",
"postcss": "^8.4.31",
"svgo": "^2.8.0"
},
"overrides": {
"react-scripts": {
"@svgr/webpack": {
"@svgr/plugin-svgo": {
"svgo": {
"css-select": {
"nth-check": "^2.0.1"
}
}
}
},
"resolve-url-loader": {
"postcss": "^8.4.31"
}
}
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/plugin-transform-runtime": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@capacitor/android": "^6.0.0",
"@capacitor/ios": "^6.0.0",
"@playwright/test": "^1.56.1",
"@svgr/plugin-svgo": "^8.1.0",
"@svgr/webpack": "^8.1.0",
"@types/react": "^19.0.12",
"@types/react-dom": "^19.0.4",
"@types/react-window": "^1.8.8",
"@vitejs/plugin-react": "^5.0.4",
"@vitest/ui": "^3.2.4",
"babel-loader": "^9.1.3",
"css-loader": "^6.8.1",
"css-select": "^5.1.0",
"html-webpack-plugin": "^5.5.3",
"nth-check": "^2.1.1",
"postcss": "^8.4.31",
"postcss-loader": "^7.3.3",
"resolve-url-loader": "^5.0.0",
"style-loader": "^3.3.3",
"svgo": "^3.3.2",
"typescript": "^5.8.2",
"vitest": "^3.2.4",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}