-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.28 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.28 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "fft-application",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint --report-unused-disable-directives --max-warnings 0 --fix",
"test": "vitest run",
"preview": "vite preview"
},
"dependencies": {
"@foundry-for-tunes/sdk": "^0.4.0",
"@headlessui/react": "^2.1.10",
"@osdk/client": "latest",
"@osdk/foundry.admin": "^2.0.2",
"@osdk/oauth": "latest",
"@tanstack/react-query": "^5.59.15",
"@tanstack/react-query-devtools": "^5.59.15",
"classnames": "^2.5.1",
"fast-average-color": "^9.4.0",
"framer-motion": "^11.11.9",
"fuse.js": "^7.0.0",
"idb": "^8.0.0",
"mitt": "^2.1.0",
"neverthrow": "^8.0.0",
"path-to-regexp": "^6.2.0",
"react": "^18",
"react-accessible-dropdown-menu-hook": "^4.0.0",
"react-aria-modal": "^5.0.2",
"react-dom": "^18",
"react-hotkeys-hook": "^4.5.1",
"react-icons": "^5.3.0",
"react-loading-skeleton": "^3.5.0",
"react-modal-hook": "^3.0.2",
"react-router-dom": "^6.23.1",
"react-tabs": "^6.0.2",
"react-virtualized-auto-sizer": "^1.0.24",
"react-window": "^1.8.10",
"runtypes": "^6.7.0",
"throttle-debounce": "^5.0.2",
"tinycolor2": "^1.6.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/classnames": "^2.3.1",
"@types/node": "^22.7.4",
"@types/react": "^18",
"@types/react-aria-modal": "^4.0.10",
"@types/react-dom": "^18",
"@types/react-window": "^1.8.8",
"@types/throttle-debounce": "^5.0.2",
"@types/tinycolor2": "^1.4.6",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"@vitejs/plugin-react": "^4.2.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.6",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.13",
"typescript": "^5.5.4",
"vite": "^5.3.4",
"vitest": "^2.0.5"
}
}