-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
88 lines (88 loc) · 3.68 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
85
86
87
88
{
"name": "accounter-monorepo",
"type": "module",
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"engines": {
"node": "23.6.0"
},
"scripts": {
"build": "yarn workspaces run build",
"client:build": "yarn --cwd packages/client build",
"client:dev": "yarn --cwd packages/client dev",
"db:init": "yarn --cwd packages/migrations db:init",
"db:migrate": "yarn --cwd packages/migrations migration:run",
"deploy": "git push heroku master",
"dev": "yarn --cwd packages/old-accounter dev",
"generate": "concurrently -c blue,green -n GraphQL,SQL \"yarn generate:graphql\" \"yarn --cwd packages/server generate:sql\"",
"generate:graphql": "graphql-codegen",
"generate:watch": "concurrently -c blue,green -n GraphQL,SQL \"yarn generate:graphql --watch\" \"yarn --cwd packages/server generate:sql:watch\"",
"get": "yarn --cwd packages/old-accounter get",
"graphql:coverage": "yarn graphql-inspector coverage './packages/client/src/**/*.{ts,tsx}' './schema.graphql'",
"graphql:validate": "yarn graphql-inspector validate './packages/client/src/**/*.{ts,tsx}' './schema.graphql'",
"lint": "eslint --cache --cache-location node_modules/.cache/.eslintcache --ignore-path .gitignore .",
"local:setup": "docker-compose -f ./docker/docker-compose.dev.yml up -d --wait && yarn db:init && yarn generate",
"mesh:artifacts-rename": "yarn node ./scripts/mesh-artifacts-rename.mjs",
"month": "yarn --cwd packages/old-accounter month",
"old-accounter:build": "yarn --cwd packages/old-accounter build",
"old-accounter:dev": "yarn --cwd packages/old-accounter dev",
"poalim-scraper:build": "yarn --cwd packages/modern-poalim-scraper build",
"pre-commit": "lint-staged",
"prebuild": "rimraf packages/*/dist/ **/.bob/",
"pregenerate:graphql": "rimraf schema.graphql packages/server/**/__generated__/types.ts packages/client/src/gql/",
"prettier:check": "prettier --cache --check .",
"prettier:fix": "prettier --cache --write --list-different .",
"release": "yarn build && changeset publish",
"scrape": "yarn --cwd packages/old-accounter scrape",
"seed": "tsx scripts/seed.ts",
"server:build": "yarn --cwd packages/server build",
"server:dev": "yarn --cwd packages/server dev",
"start": "yarn --cwd packages/old-accounter start",
"test": "vitest"
},
"dependencies": {
"graphql": "16.10.0",
"graphql-scalars": "1.24.0"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.11",
"@graphql-codegen/cli": "5.0.3",
"@graphql-codegen/client-preset": "4.5.1",
"@graphql-codegen/graphql-modules-preset": "4.0.12",
"@graphql-codegen/schema-ast": "4.1.0",
"@graphql-codegen/typescript": "4.1.2",
"@graphql-codegen/typescript-resolvers": "4.4.1",
"@graphql-eslint/eslint-plugin": "4.3.0",
"@graphql-hive/cli": "0.45.0",
"@graphql-inspector/cli": "5.0.8",
"@parcel/watcher": "^2.4.1",
"@theguild/eslint-config": "0.13.2",
"@theguild/prettier-config": "3.0.0",
"@types/node": "22.10.5",
"bob-the-bundler": "^7.0.1",
"concurrently": "9.1.2",
"eslint": "8.57.1",
"glob": "11.0.1",
"husky": "9.1.7",
"lint-staged": "15.3.0",
"prettier": "3.4.2",
"prettier-plugin-sql": "0.18.1",
"ts-node": "10.9.2",
"typescript": "5.7.3",
"vite-tsconfig-paths": "5.1.4",
"vitest": "2.1.8"
},
"resolutions": {
"graphql": "16.10.0"
},
"lint-staged": {
"*.--write": "prettier --write"
}
}