-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
56 lines (56 loc) · 2.06 KB
/
package.json
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
{
"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 dev:backend dev:frontend dev:helpers",
"dev:backend": "convex dev",
"dev:frontend": "vite",
"dev:helpers": "cd packages/convex-helpers && npm run dev",
"predev": "npm run build",
"lint": "tsc --project tsconfig.test.json",
"build": "cd packages/convex-helpers && npm run build",
"clean": "rm -rf packages/convex-helpers/dist",
"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",
"publish": "./publish.sh"
},
"dependencies": {
"classnames": "^2.3.2",
"convex": "^1.17.0",
"convex-helpers": "file:packages/convex-helpers/dist",
"hono": "^4.3.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"usehooks-ts": "^3.1.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.17.3",
"@edge-runtime/vm": "5.0.0",
"@redocly/cli": "1.28.0",
"@testing-library/react": "16.2.0",
"@types/babel__core": "7.20.5",
"@types/jest": "29.5.14",
"@types/node": "22.13.0",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5",
"@vitejs/plugin-react": "4.3.4",
"@vitest/coverage-v8": "3.0.4",
"chokidar-cli": "3.0.0",
"convex-test": "0.0.35",
"eslint": "9.19.0",
"jsdom": "26.0.0",
"npm-run-all2": "7.0.2",
"typescript": "5.7.3",
"vite": "6.0.11",
"vitest": "3.0.4"
}
}