-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
60 lines (60 loc) · 2.14 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
57
58
59
60
{
"name": "convex-helpers-base",
"private": "true",
"description": "Home to [packages](./packages/) to complement the official convex package.",
"bin": {
"convex-helpers": "./dist/bin.cjs"
},
"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": {
"@redocly/cli": "^1.20.0",
"chalk": "^5.3.0",
"classnames": "^2.3.2",
"convex": "^1.14.1",
"convex-helpers": "file:packages/convex-helpers/dist",
"hono": "^4.3.6",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"usehooks-ts": "^3.1.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.16.4",
"@edge-runtime/vm": "4.0.3",
"@testing-library/react": "16.0.1",
"@types/babel__core": "7.20.5",
"@types/jest": "29.5.14",
"@types/node": "22.9.0",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@vitejs/plugin-react": "4.3.3",
"@vitest/coverage-v8": "2.1.4",
"chokidar-cli": "3.0.0",
"convex-test": "0.0.33",
"eslint": "9.14.0",
"jsdom": "25.0.1",
"npm-run-all2": "7.0.1",
"typescript": "5.6.3",
"vite": "5.4.10",
"vitest": "2.1.4"
}
}