forked from tetherto/mdk-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 785 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 785 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
{
"name": "mining-sdk-ui",
"version": "0.0.0",
"private": true,
"packageManager": "pnpm@10.5.0",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=10.0.0"
},
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix",
"typecheck": "turbo typecheck",
"check": "turbo check",
"clean": "turbo clean && rimraf node_modules",
"prepare": "husky"
},
"devDependencies": {
"@antfu/eslint-config": "^6.7.3",
"eslint": "^9.27.0",
"eslint-plugin-format": "^1.3.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"rimraf": "^6.0.1",
"turbo": "^2.5.4",
"typescript": "^5.8.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"eslint --fix"
]
}
}