-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 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
49
50
51
52
53
54
{
"name": "paybox",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev --concurrency=11",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"db": "docker compose -f ./backend/hasura/docker-compose.yml up",
"hasura": "hasura console --project backend/hasura/hasura",
"kafka": "docker compose -f ./docker/kafka/docker-compose.yml up",
"bump-versions": "yarn changeset version && yarn install",
"publish-packages": "turbo run build && changeset version && changeset publish"
},
"husky": {
"hooks": {
"pre-commit": "./.husky/pre-commit",
"post-commit": "./.husky/post-commit",
"post-merge": "./.husky/post-merge"
}
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@repo/eslint-config": "*",
"@repo/typescript-config": "*",
"lerna": "^8.1.2",
"prettier": "^3.1.1",
"turbo": "^2.0.6"
},
"engines": {
"node": ">=20.6.1"
},
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*",
"backend/*",
"contract",
"openapi",
"monitor"
],
"dependencies": {
"@microsoft/eslint-formatter-sarif": "3.1.0",
"@typescript-eslint/parser": "^8.0.0",
"anchor": "^1.4.1",
"esbuild": "^0.23.0",
"eslint": "8.57.0",
"husky": "^9.0.10",
"next": "^14.1.3",
"openapi-typescript-codegen": "^0.29.0",
"react": "^18.2.0",
"tsup": "^8.0.2"
}
}