-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.7 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "arrigt2",
"type": "module",
"module": "src/index.ts",
"scripts": {
"dev": "cross-env NODE_ENV=development tsx src/index.ts",
"start": "cross-env NODE_ENV=production tsx src/index.ts",
"build": "remix vite:build",
"migrate:dev": "prisma migrate dev",
"test:unit": "vitest --config vite.config.unit.ts --coverage",
"test:integration": "vitest --config vite.config.integration.ts --coverage",
"test:mutation": "stryker run",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier . --check",
"format:fix": "prettier . --write",
"generate": "bun generate:prisma && bun generate:codegen",
"generate:codegen": "graphql-codegen",
"generate:codegen:watch": "graphql-codegen --watch",
"generate:prisma": "prisma generate"
},
"engines": {
"node": "v21.2.0"
},
"dependencies": {
"@conform-to/react": "0.9.1",
"@conform-to/zod": "0.9.1",
"@pothos/core": "3.38.0",
"@pothos/plugin-complexity": "3.13.0",
"@pothos/plugin-prisma": "3.61.0",
"@pothos/plugin-smart-subscriptions": "3.7.1",
"@pothos/plugin-validation": "3.10.1",
"@pothos/plugin-with-input": "3.10.1",
"@remix-run/express": "2.3.1",
"@remix-run/node": "2.3.1",
"@remix-run/react": "2.3.1",
"esbuild-register": "3.5.0",
"express": "4.18.2",
"graphql": "16.8.1",
"graphql-scalars": "1.22.4",
"graphql-sse": "2.4.0",
"graphql-subscriptions": "2.0.0",
"graphql-yoga": "5.0.0",
"isbot": "^5.1.1",
"prisma": "^5.7.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"zod": "3.22.4",
"zod-validation-error": "2.1.0"
},
"devDependencies": {
"@graphql-codegen/cli": "5.0.0",
"@graphql-codegen/client-preset": "4.1.0",
"@graphql-codegen/schema-ast": "4.0.0",
"@graphql-eslint/eslint-plugin": "3.20.1",
"@graphql-tools/executor-http": "1.0.5",
"@parcel/watcher": "2.3.0",
"@remix-run/dev": "^2.8.1",
"@stryker-mutator/core": "7.3.0",
"@stryker-mutator/typescript-checker": "7.3.0",
"@stryker-mutator/vitest-runner": "7.3.0",
"@types/express": "4.17.21",
"@types/react": "18.2.38",
"@types/react-dom": "18.2.17",
"@typescript-eslint/eslint-plugin": "6.12.0",
"@typescript-eslint/parser": "6.12.0",
"@vitest/coverage-v8": "^1.3.1",
"bun-types": "latest",
"cross-env": "7.0.3",
"esbuild": "0.19.7",
"eslint": "8.54.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"graphql-config": "5.0.3",
"prettier": "3.1.0",
"tsm": "^2.3.0",
"tsx": "4.6.2",
"typescript": "5.3.2",
"vite": "^5.1.5",
"vitest": "^1.3.1"
}
}