forked from Epta-Node/Linkora-social
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.23 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
{
"name": "linkora-socials",
"private": true,
"scripts": {
"dev": "turbo run dev",
"dev:contracts": "pnpm --filter contracts dev",
"build": "turbo run build",
"build:contracts": "pnpm --filter contracts build",
"lint": "turbo run lint",
"test": "turbo run test",
"test:integration": "pnpm --filter contracts test:integration",
"codegen": "pnpm build:contracts && pnpm --filter @linkora/codegen generate",
"codegen:check": "pnpm codegen && git diff --exit-code packages/sdk/src/generated/",
"format": "turbo run format",
"prepare": "husky"
},
"devDependencies": {
"@playwright/test": "^1.45.0",
"@stellar/stellar-sdk": "^15.1.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.8.3",
"ts-node": "^10.9.2",
"turbo": "latest"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{js,jsx,json,md,yaml,yml}": [
"prettier --write"
],
"*.rs": [
"bash -c 'cd packages/contracts && cargo fmt'"
]
},
"packageManager": "pnpm@9.15.9"
}