-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.04 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.04 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
{
"name": "recursor",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"convex:dev": "cd packages/convex && pnpm run dev",
"convex:clean": "cd packages/convex && pnpm run clean",
"convex:deploy": "cd packages/convex && pnpm run deploy"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@vitejs/plugin-react": "^4.7.0",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"convex": "^1.28.0",
"eslint": "9.34.0",
"jsdom": "^25.0.1",
"prettier": "^3.6.2",
"turbo": "^2.5.8",
"typescript": "5.9.2",
"vitest": "^3.2.4"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=18"
}
}