-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.46 KB
/
package.json
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
{
"name": "moneykeeper",
"private": true,
"version": "1.0.25",
"type": "module",
"scripts": {
"dev": "vite",
"devnet": "vite --host",
"build": "tsc && vite build",
"preview": "vite preview",
"publish": "npm run build && git add . && git commit -am '$npm_package_version' --allow-empty && git push && npm version patch && git push && git push --tags"
},
"dependencies": {
"@reduxjs/toolkit": "^2.0.1",
"axios": "^1.2.0",
"chart.js": "^4.4.1",
"crypto-js": "^4.1.1",
"date-fns": "^3.2.0",
"dayjs": "^1.11.10",
"formik": "^2.2.9",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-day-picker": "^8.10.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-icons": "^4.6.0",
"react-modal": "^3.16.1",
"react-redux": "^9.0.4",
"react-router-dom": "^6.4.2",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/crypto-js": "^4.1.1",
"@types/node": "^18.11.7",
"@types/react": "18.2.42",
"@types/react-dom": "^18.0.6",
"@types/react-modal": "^3.16.3",
"@types/react-router": "^5.1.19",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"@vitejs/plugin-react": "^2.1.0",
"autoprefixer": "^10.4.12",
"eslint": "^8.26.0",
"eslint-plugin-react": "^7.31.10",
"postcss": "^8.4.18",
"tailwindcss": "^3.2.1",
"typescript": "^4.6.4",
"vite": "^3.1.0",
"vite-plugin-mkcert": "^1.10.1"
}
}