-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.59 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 3.59 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "astranotes",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\" --fix",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:component": "vitest run --dir src/test/components",
"test:store": "vitest run src/test/store",
"test:utils": "vitest run --dir src/test/utils",
"test:services": "vitest run --dir src/test/services",
"test:integration": "vitest run --dir src/test/integration",
"generate:demo-seed": "tsx scripts/generate-demo-seed.ts",
"typecheck": "tsc --noEmit",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri:dev": "tauri dev -v",
"tauri:debug": "VITE_VERBOSE_DEBUG=true tauri dev -v",
"tauri:build:mac": "node build.js mac",
"tauri:build:macuniversal": "node build.js macuniversal",
"tauri:build:win": "node build.js win",
"tauri:build:remote": "node build.js",
"update-all": "pnpm update && cd src-tauri && cargo update && cd .."
},
"dependencies": {
"@ftrack/api": "^1.11.2",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dismissable-layer": "^1.1.11",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-toast": "^1.2.15",
"@radix-ui/react-toggle-group": "^1.1.11",
"@radix-ui/react-tooltip": "^1.2.8",
"@sentry/react": "^10.32.1",
"@sentry/vite-plugin": "^4.6.1",
"@tauri-apps/api": "^2.9.1",
"@tauri-apps/plugin-dialog": "^2.4.2",
"@tauri-apps/plugin-fs": "^2.4.4",
"@tauri-apps/plugin-http": "^2.5.4",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-shell": "^2.3.3",
"@tauri-apps/plugin-updater": "^2.9.0",
"@types/markdown-it": "^14.1.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"dexie": "^4.2.1",
"dexie-react-hooks": "^4.2.0",
"driver.js": "^1.4.0",
"eslint": "^9.39.2",
"eslint-plugin-react-hooks": "6.1.0",
"lucide-react": "^0.544.0",
"markdown-it": "^14.1.0",
"motion": "^12.23.26",
"pdf-lib": "^1.17.1",
"prettier": "^3.7.4",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"tailwind-merge": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.9.3",
"uuid": "^13.0.0",
"zustand": "^5.0.9"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.18",
"@tauri-apps/cli": "^2.9.6",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "14.6.1",
"@types/node": "^22.19.3",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.50.0",
"@typescript-eslint/parser": "^8.50.0",
"@typescript-eslint/typescript-estree": "^8.50.0",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/coverage-v8": "3.2.4",
"@vitest/ui": "^3.2.4",
"csv-parse": "^6.1.0",
"dotenv": "^17.2.3",
"fake-indexeddb": "^6.2.5",
"happy-dom": "^19.0.2",
"jsdom": "^27.3.0",
"msw": "^2.12.4",
"react-scan": "^0.4.3",
"readline-sync": "^1.4.10",
"tailwindcss": "^4.1.18",
"tsx": "^4.21.0",
"typescript": "^5.9.2",
"vite": "^7.3.0",
"vitest": "^3.2.4"
},
"packageManager": "pnpm@9.15.4+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0",
"eslintConfig": {
"extends": []
}
}