-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.68 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
{
"name": "ynab-diff",
"private": true,
"version": "0.0.0",
"type": "module",
"license": "MIT",
"scripts": {
"dev": "vite",
"test": "vitest",
"check": "npm run check-types && npm run check-lint && npm run check-format",
"check-types": "tsc --build",
"check-lint": "eslint .",
"check-format": "prettier --check .",
"fix-lint": "eslint . --fix",
"fix-format": "prettier --write .",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"@reduxjs/toolkit": "^2.8.2",
"@tailwindcss/vite": "^4.1.11",
"ag-grid-react": "^33.3.0",
"clsx": "^2.1.1",
"csv-parse": "^5.6.0",
"currency.js": "^2.0.4",
"immer": "^10.1.1",
"lodash": "^4.17.21",
"lucide-react": "^0.526.0",
"postcss": "^8.4.49",
"react": "^19.0.0",
"react-async-hook": "^4.0.0",
"react-dom": "^19.0.0",
"react-redux": "^9.2.0",
"redux-undo": "^1.1.0",
"tailwindcss": "^4.1.11"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.2.0",
"@types/lodash": "^4.17.14",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^9.9.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.9",
"globals": "^15.9.0",
"jsdom": "^26.0.0",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.14",
"typescript": "^5.5.3",
"typescript-eslint": "^8.0.1",
"vite": "^6.2.2",
"vitest": "^3.0.8"
}
}