-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.63 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
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
{
"name": "babone-vite",
"private": true,
"version": "0.0.2",
"type": "module",
"author": "Emmanuel Narcisse",
"description": "An ERP minimalist software",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"test": "vitest --globals",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@prisma/client": "^4.15.0",
"@reduxjs/toolkit": "^1.9.5",
"@supabase/supabase-js": "^2.24.0",
"@tanstack/match-sorter-utils": "^8.8.4",
"@tanstack/react-table": "^8.9.3",
"@tauri-apps/api": "^1.2.0",
"@types/history": "^5.0.0",
"@types/react-redux": "^7.1.25",
"axios": "^1.4.0",
"classnames": "^2.3.2",
"daisyui": "^2.51.6",
"history": "^5.3.0",
"localforage": "^1.10.0",
"match-sorter": "^6.3.1",
"minimatch": "^9.0.2",
"papaparse": "^5.4.1",
"pg": "^8.11.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-hook-form": "^7.43.9",
"react-icons": "^4.8.0",
"react-redux": "^8.0.5",
"react-router-dom": "^6.10.0",
"react-toastify": "^9.1.2",
"whatwg-fetch": "^3.6.2"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@tailwindcss/typography": "^0.5.9",
"@tauri-apps/cli": "^1.2.3",
"@testing-library/dom": "^9.2.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.1",
"@types/lodash": "^4.14.195",
"@types/node": "^18.7.10",
"@types/papaparse": "^5.3.7",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@types/testing-library__jest-dom": "^5.14.5",
"@vitejs/plugin-react": "^3.0.0",
"@vitest/coverage-c8": "^0.30.1",
"@vitest/coverage-istanbul": "^0.30.1",
"autoprefixer": "^10.4.14",
"eslint": "^8.39.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"global-jsdom": "^8.8.0",
"jsdom": "^21.1.1",
"miragejs": "^0.1.47",
"postcss": "^8.4.23",
"prettier": "^2.8.8",
"prisma": "^4.15.0",
"supabase": "^1.64.8",
"tailwindcss": "^3.3.2",
"typescript": "^4.9.5",
"vite": "^4.2.1",
"vitest": "^0.30.1"
},
"prisma": {
"schema": "src/services/api/model/schema.prisma"
}
}