-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.93 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.93 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "mining-sdk",
"type": "module",
"version": "0.0.0",
"private": true,
"packageManager": "pnpm@10.5.0",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=10.0.0"
},
"scripts": {
"build": "turbo build",
"build:verbose": "turbo build --output-logs=full",
"build:demo": "VITE_BASE_PATH=/mdk turbo build --filter=@mining-sdk/demo",
"build:scss": "turbo build:scss",
"build:ts": "turbo build:ts",
"check": "turbo check",
"clean": "turbo clean && rimraf node_modules",
"dev": "turbo dev",
"dev:demo": "VITE_BASE_PATH=/mdk turbo dev --filter=@mining-sdk/demo",
"dev:packages": "turbo dev --filter=!@mining-sdk/demo",
"format": "turbo format",
"size": "node scripts/bundle-size.mjs",
"size:check": "pnpm build && pnpm size",
"test": "turbo test",
"test:watch": "turbo test:watch",
"test:coverage": "turbo test:coverage",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix",
"prepare": "husky",
"fullcheck": "pnpm lint && pnpm typecheck && pnpm format && pnpm build && pnpm test:coverage",
"preview:demo": "VITE_BASE_PATH=/mdk turbo preview --filter=@mining-sdk/demo",
"typecheck": "turbo typecheck",
"watch": "turbo watch",
"watch:scss": "turbo watch:scss",
"watch:ts": "turbo watch:ts"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:",
"@vitejs/plugin-react": "catalog:",
"autoprefixer": "catalog:",
"concurrently": "catalog:",
"eslint": "catalog:",
"eslint-plugin-format": "catalog:",
"husky": "catalog:",
"lint-staged": "catalog:",
"npm-run-all2": "catalog:",
"postcss": "catalog:",
"prettier": "catalog:",
"rimraf": "catalog:",
"rollup-plugin-postcss": "catalog:",
"sass": "catalog:",
"turbo": "catalog:",
"typescript": "catalog:",
"vite": "catalog:"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"eslint --fix",
"prettier --write"
]
}
}