-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.15 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.15 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
{
"name": "mercalc-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --watch",
"rates": "node scripts/updateExchangeRates.js"
},
"dependencies": {
"@zip.js/zip.js": "^2.7.48",
"bootstrap": "^5.3.2",
"decimal.js": "^10.4.3",
"he": "^1.2.0",
"jspdf": "^3.0.1",
"luxon": "^3.4.4",
"next": "^15.5.7",
"papaparse": "^5.4.1",
"react": "19.1.0",
"react-bootstrap": "^2.9.1",
"react-dom": "19.1.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^16.3.0",
"@types/he": "^1.2.3",
"@types/jest": "^29.5.8",
"@types/luxon": "^3.3.4",
"@types/node": "^20",
"@types/papaparse": "^5.3.11",
"@types/react": "19.1.2",
"@types/react-dom": "19.1.3",
"@types/zip.js": "^2.0.33",
"eslint": "^8",
"eslint-config-next": "15.3.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"typescript": "^5"
},
"overrides": {
"@types/react": "19.1.2",
"@types/react-dom": "19.1.3"
}
}