-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
42 lines (42 loc) · 1.32 KB
/
package.json
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
{
"name": "@meshsdk/root",
"private": true,
"scripts": {
"build": "turbo run build:mesh && turbo run build:docs && turbo run build:apps && turbo run build:scripts",
"build2": "turbo build --concurrency 15 && npm run build:scripts",
"build:apps": "turbo run build:apps",
"build:docs": "turbo run build:docs",
"build:mesh": "turbo run build:mesh",
"build:scripts": "turbo run build:scripts",
"clean": "turbo run clean && rm -rf .turbo && rm -rf dist && rm -rf node_modules && rm package-lock.json",
"dev": "turbo dev --concurrency 15",
"format": "turbo run format --continue -- --cache --cache-location node_modules/.cache/.prettiercache",
"format:fix": "turbo run format --continue -- --write --cache --cache-location node_modules/.cache/.prettiercache",
"lint": "turbo lint",
"pack": "turbo pack",
"test": "turbo test",
"sh:version": "sh scripts/bump-version.sh"
},
"devDependencies": {
"@meshsdk/configs": "*",
"@types/jest": "^29.5.12",
"dotenv": "^16.4.5",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"turbo": "latest"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*",
"scripts/*"
],
"dependencies": {
"install": "^0.13.0",
"npm": "^10.8.0"
}
}