-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.42 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
{
"name": "crm",
"version": "0.1.0",
"description": "An friendly neigherhood CRM.",
"main": "index.js",
"type": "module",
"scripts": {
"check:types": "tsc",
"check:cycles": "tsx ./scripts/cycles.ts",
"dev": "dotenv -- tsx watch --clear-screen=false ./src/main.ts",
"dev:db:migrate": "dotenv -- tsx ./src/migrate.ts",
"dev:db:generate": "drizzle-kit generate",
"test": "dotenv -e .env.test -- tsx --test",
"test:gql": "graphql-codegen --c ./scripts/codegen.ts",
"test:db:setup": "dotenv -e .env.test -- tsx ./scripts/dbSetup.ts",
"test:db:teardown": "dotenv -e .env.test -- tsx ./scripts/dbSetup.ts --teardown"
},
"author": "",
"license": "SEE LICENSE IN LICENSE",
"volta": {
"node": "22.5.1"
},
"dependencies": {
"@hono/node-server": "^1.11.1",
"@pothos/core": "^3.41.1",
"@webf/auth": "^0.7.0",
"@webf/hono-auth": "^0.12.0",
"drizzle-orm": "^0.30.10",
"graphql": "^16.8.1",
"graphql-scalars": "^1.23.0",
"hono": "^4.3.5",
"postgres": "^3.4.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/client-preset": "^4.2.5",
"@graphql-typed-document-node/core": "^3.2.0",
"@types/madge": "^5.0.3",
"@types/node": "^22.0.0",
"dotenv": "^16.4.5",
"dotenv-cli": "^7.4.2",
"drizzle-kit": "^0.21.1",
"madge": "^7.0.0",
"tsx": "^4.16.3",
"typescript": "^5.5.4"
}
}