-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 792 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 792 Bytes
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
{
"name": "universal-sdk",
"private": true,
"scripts": {
"build": "turbo build",
"build:packages": "turbo build --filter='./packages/**'",
"dev": "turbo dev --parallel",
"format": "turbo format",
"check": "turbo check",
"check:types": "turbo check:types",
"lint": "turbo lint",
"start": "turbo start",
"prepare": "pnpm simple-git-hooks"
},
"resolutions": {
"wagmi": "2.12.11"
},
"devDependencies": {
"lint-staged": "^15.2.10",
"simple-git-hooks": "^2.11.1",
"turbo": "^2.1.2",
"typescript": "^5.4.5"
},
"packageManager": "pnpm@9.11.0",
"engines": {
"node": ">=20"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"pnpm format --"
]
}
}