-
Notifications
You must be signed in to change notification settings - Fork 87
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.68 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.68 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
{
"name": "convex-helpers-base",
"private": "true",
"description": "Home to [packages](./packages/) to complement the official convex package.",
"scripts": {
"init": "convex dev --until-success",
"dev": "npm-run-all --parallel --race dev:backend dev:frontend dev:helpers test:watch",
"dev:backend": "convex dev",
"dev:frontend": "vite",
"dev:helpers": "cd packages/convex-helpers && npm run dev",
"predev": "convex init && npm run build",
"format": "prettier --write .",
"lint": "eslint . && npm run typecheck && prettier --check .",
"typecheck": "tsc --noEmit && cd packages/convex-helpers && npm run typecheck",
"build": "cd packages/convex-helpers && npm run build",
"clean": "rm -rf packages/convex-helpers/dist packages/convex-helpers/tsconfig.tsbuildinfo",
"pack": "cd packages/convex-helpers/dist && npm pack --pack-destination ../../..",
"test": "vitest run",
"test:watch": "vitest",
"test:debug": "vitest --inspect-brk --no-file-parallelism",
"test:coverage": "vitest run --coverage --coverage.reporter=text",
"testFunctionsExistingBackend": "just convex deploy && just convex env set IS_TEST true && vitest --run convex/example.test.ts",
"testFunctions": "node backendHarness.js 'npm run testFunctionsExistingBackend'",
"arethetypeswrong": "cd packages/convex-helpers/dist && attw $(npm pack) --ignore-rules cjs-resolves-to-esm",
"alpha": "./publish.sh alpha",
"release": "./publish.sh"
},
"dependencies": {
"classnames": "^2.3.2",
"convex-helpers": "file:packages/convex-helpers/dist",
"hono": "^4.3.6",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"usehooks-ts": "^3.1.0",
"vite": "^6.0.3 <8.0.0",
"zod": "^4.1",
"zod3": "npm:zod@~3.25.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.18.2",
"@convex-dev/eslint-plugin": "2.0.0",
"@edge-runtime/vm": "5.0.0",
"@eslint/js": "9.39.4",
"@redocly/cli": "2.25.4",
"@standard-schema/spec": "1.1.0",
"@testing-library/react": "16.3.2",
"@types/babel__core": "7.20.5",
"@types/jest": "30.0.0",
"@types/node": "24.12.2",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "5.2.0",
"@vitest/coverage-v8": "4.1.3",
"chokidar-cli": "3.0.0",
"convex": "1.34.1",
"convex-test": "0.0.47",
"eslint": "9.39.4",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"globals": "17.4.0",
"jsdom": "29.0.2",
"npm-run-all2": "8.0.4",
"pkg-pr-new": "0.0.66",
"prettier": "3.8.1",
"typescript": "5.9.3",
"typescript-eslint": "8.58.1",
"vitest": "4.1.3",
"yaml": "2.8.3",
"zod-compare": "3.0.0"
}
}