-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 972 Bytes
/
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
{
"name": "swapr-ui-monorepo",
"repository": "https://github.com/SwaprHQ/swapr-ui-lib",
"version": "0.1.5",
"license": "MIT",
"packageManager": "bun@1.0.6",
"engines": {
"node": ">=18.0.0"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"build:ui": "turbo run build --filter=swapr-ui",
"build:storybook": "turbo run build:storybook --filter=swapr-ui",
"build:website": "turbo run build --filter=swapr-ui-website",
"clean": "turbo run clean && npx rimraf node_modules && npx rimraf .turbo",
"dev": "turbo run dev",
"dev:ui": "cd packages/ui && bun run storybook",
"dev:website": "turbo run dev --filter=swapr-ui-website",
"lint": "turbo lint",
"start": "turbo run start",
"typecheck": "turbo run typecheck"
},
"devDependencies": {
"@swapr-ui/eslint-config": "workspace:*",
"@swapr-ui/typescript-config": "workspace:*",
"turbo": "^1.9.4"
}
}