forked from openreelio/openreelio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.25 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.25 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
{
"name": "openreelio",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"tauri": "tauri",
"test": "vitest",
"test:run": "vitest run",
"test:ci-local": "CI=true vitest run --reporter=dot --no-coverage --bail=5",
"test:ui": "vitest --ui",
"test:bench": "vitest run src/benchmarks/**/*.bench.test.ts",
"test:stress": "tsx scripts/run-stress-tests.ts",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:report": "playwright show-report",
"type-check": "tsc --noEmit",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"format": "prettier --write src/",
"analyze": "vite build --mode analyze",
"analyze:stats": "vite build && npx source-map-explorer dist/assets/*.js --html stats.html",
"version:check": "npx tsx scripts/sync-version.ts --check",
"version:sync": "npx tsx scripts/sync-version.ts --fix",
"generate-signing-keys": "npx tsx scripts/generate-signing-keys.ts",
"prepare": "husky"
},
"dependencies": {
"@tauri-apps/api": "^2.9.0",
"@tauri-apps/plugin-dialog": "^2.6.0",
"immer": "^10.1.1",
"lucide-react": "^0.562.0",
"nanoid": "^3.3.11",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^7.12.0",
"zod": "^4.3.6",
"zustand": "^5.0.9"
},
"devDependencies": {
"@eslint/js": "^9.39.0",
"@playwright/test": "^1.57.0",
"@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.0.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.5.0",
"autoprefixer": "^10.4.0",
"eslint": "^9.0.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.0",
"husky": "^9.1.7",
"jsdom": "^26.0.0",
"postcss": "^8.4.0",
"prettier": "^3.3.0",
"rollup-plugin-visualizer": "^5.14.0",
"source-map-explorer": "^2.5.3",
"tailwindcss": "^3.4.0",
"tsx": "^4.21.0",
"typescript": "^5.9.0",
"typescript-eslint": "^8.39.0",
"vite": "^7.0.0",
"vitest": "^3.0.0"
}
}