-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.06 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.06 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
72
73
{
"name": "plumber",
"license": "AGPL-3.0",
"scripts": {
"postinstall": "npm run gqlc",
"all": "concurrently -c auto",
"setup": "npm run -w backend setup",
"dev:frontend": "npm run -w frontend dev",
"dev:backend": "npm run -w backend dev",
"dev:worker": "npm run -w backend worker",
"dev": "npm run all --kill-others npm:dev:*",
"gqlc": "graphql-codegen --config gql-codegen.ts",
"build": "npm run --workspaces --if-present build",
"start": "npm run -w backend start",
"start:worker": "npm run -w backend start:worker",
"lint": "npm run --workspaces --if-present lint",
"test": "vitest",
"test:ui": "vitest --ui",
"migrate": "npm run -w backend db:migrate",
"teardown": "npm run -w backend teardown"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"overrides": {
"axios": "1.15.0",
"graphql-rate-limit": {
"@graphql-tools/utils": {
"graphql": "16.11.0"
}
},
"qs": "6.15.0",
"glob": "13.0.6",
"minimatch": "10.2.3",
"rollup": "4.59.0",
"dd-trace": {
"@opentelemetry/core": "2.2.0",
"path-to-regexp": "0.1.13"
},
"@opentelemetry/core": {
"@opentelemetry/semantic-conventions": "1.37.0"
},
"lodash": "4.18.1",
"lodash-es": "4.18.1",
"vite": "6.4.2",
"immutable": "4.3.8",
"picomatch": "4.0.4"
},
"devDependencies": {
"@eddeee888/gcg-typescript-resolver-files": "0.7.2",
"@graphql-codegen/cli": "^5.0.7",
"@types/node": "^22.18.0",
"@typescript-eslint/eslint-plugin": "^8.45.0",
"@typescript-eslint/parser": "^8.45.0",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"concurrently": "^9.2.1",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"prettier": "^2.5.1",
"rimraf": "^4.4.1",
"tsc-alias": "^1.8.16",
"typescript": "^5.5.4",
"vitest": "^3.2.4",
"wait-on": "^7.2.0"
},
"version": "1.61.7"
}