generated from blockmatic-icebox/powerstack
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 1.03 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
{
"name": "smartsale",
"version": "1.0.0",
"author": "bitcash.org",
"license": "MIT",
"description": "bitlauncher monorepo",
"private": true,
"type": "module",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bn.js": "^5.1.6",
"@types/bun": "latest",
"husky": "^9.1.6",
"turbo": "^2.2.3"
},
"scripts": {
"build": "turbo build --no-daemon",
"dev": "turbo dev --no-daemon --parallel",
"dev:web": "turbo dev --filter=@repo/web",
"dev:jobs": "turbo jobs --filter=@repo/jobs",
"dev:faucet": "turbo dev --filter=@repo/faucet",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo clean",
"format-and-lint": "biome check .",
"format-and-lint:fix": "biome check . --write",
"clean:node_modules": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +"
},
"engines": {
"bun": "1.x"
},
"packageManager": "[email protected]",
"workspaces": {
"packages": [
"apps/*",
"packages/*",
"services/*",
"tooling/*"
]
}
}