-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.53 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.53 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
{
"name": "currency_converter",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "CI_API_TEST=1 vitest -c vitest.config.mts",
"test:ci": "vitest run -c vitest.config.mts --coverage --reporter=dot",
"test:unit": "vitest -c vitest.config.mts --project unit",
"test:integration": "CI_API_TEST=1 vitest run -c vitest.config.mts --project integration --reporter=dot"
},
"dependencies": {
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-slot": "^1.2.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide": "^0.548.0",
"lucide-react": "^0.548.0",
"next": "16.0.0",
"next-themes": "^0.4.6",
"react": "19.2.0",
"react-dom": "19.2.0",
"recharts": "^2.15.4",
"tailwind-merge": "^3.3.1"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^5.1.0",
"@vitest/coverage-v8": "^4.0.4",
"dotenv": "^17.2.3",
"eslint": "^9",
"eslint-config-next": "16.0.0",
"happy-dom": "^20.0.8",
"jsdom": "^27.0.1",
"tailwindcss": "^4",
"tw-animate-css": "^1.4.0",
"typescript": "^5",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^4.0.4"
}
}