-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dofus-Salescraft.txt
67 lines (67 loc) · 1.94 KB
/
Dofus-Salescraft.txt
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
Dofus-Salescraft
├── .gitattributes
├── .gitignore
├── @
│ ├── components
│ │ └── ui
│ │ ├── button.tsx
│ │ ├── dropdown-menu.tsx
│ │ ├── input.tsx
│ │ ├── table.tsx
│ │ └── tabs.tsx
│ └── lib
│ └── utils.ts
├── components.json
├── dist
│ ├── assets
│ │ ├── index-200e8339.css
│ │ └── main-f2b40d27.js
│ └── index.html
├── dist-electron
│ ├── database.js
│ ├── main.js
│ └── preload.js
├── Dofus-Salescraft.txt
├── electron
│ ├── database.ts
│ ├── main.ts
│ └── preload.ts
├── Features.md
├── package-lock.json
├── package.json
├── postcss.config.js
├── public
│ ├── data
│ │ ├── dofus_consumables.json
│ │ ├── dofus_equipment.json
│ │ └── dofus_resources.json
│ └── Dofus.ico
├── README.md
├── scripts
│ └── downloadData.js
├── src
│ ├── App.tsx
│ ├── components
│ │ ├── Charts.tsx
│ │ ├── Craftimizer
│ │ │ ├── CraftedItemList.tsx
│ │ │ ├── IngredientList.tsx
│ │ │ ├── IntermediateItemsList.tsx
│ │ │ └── SearchBar.tsx
│ │ ├── Craftimizer.tsx
│ │ └── SalesTracker.tsx
│ ├── electron.d.ts
│ ├── globals.css
│ ├── hooks
│ │ └── useCalculation.ts
│ ├── index.html
│ ├── index.tsx
│ ├── services
│ │ ├── CalculationService.ts
│ │ ├── DataAccessService.ts
│ │ └── DatabaseService.ts
│ └── types.ts
├── tailwind.config.js
├── tsconfig.json
├── tsconfig.node.json
└── vite.config.ts