forked from RaceeyXo/use-stellar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.36 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
{
"name": "use-stellar-monorepo",
"private": true,
"version": "0.1.0",
"description": "React hooks for the Stellar network",
"packageManager": "pnpm@9.15.4",
"workspaces": [
"packages/*"
], "scripts": {
"dev": "pnpm --filter @use-stellar/demo dev",
"build": "pnpm --filter use-stellar build",
"test": "pnpm --filter use-stellar test",
"test:watch": "pnpm --filter use-stellar test:watch",
"test:package": "pnpm --filter use-stellar test:package",
"format": "prettier --write \"packages/**/*.{ts,tsx,json}\"",
"format:check": "prettier --check \"packages/**/*.{ts,tsx,json}\"",
"lint": "eslint packages/*/src/**/*.{ts,tsx} --max-warnings 0",
"lint:fix": "eslint packages/*/src/**/*.{ts,tsx} --fix --max-warnings 0",
"typecheck": "tsc --noEmit -p packages/core/tsconfig.json",
"prepare": "husky"
},
"lint-staged": {
"packages/**/*.{ts,tsx}": [
"prettier --write",
"eslint --fix --max-warnings 0"
],
"packages/**/*.{json,yaml,yml}": [
"prettier --write"
]
},
"devDependencies": {
"@types/react": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^8.62.0",
"@typescript-eslint/parser": "^8.62.0",
"eslint": "^8.0.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"prettier": "^3.8.4",
"typescript": "^5.4.0"
},
"dependencies": {
"@albedo-link/intent": "^0.13.0"
}
}