-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
37 lines (37 loc) · 1.11 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
{
"name": "stackly-ui",
"repository": "https://github.com/SwaprHQ/stackly-ui",
"version": "1.3.4",
"license": "MIT",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "cd packages/sdk && bun typechain && cd ../.. && turbo run build lint",
"build:app": "cd packages/sdk && bun typechain && turbo run build --filter=@stackly/sdk --filter=app",
"build:landing": "cd packages/sdk && bun typechain && turbo run build --filter=@stackly/sdk --filter=landing",
"dev": "turbo run dev",
"dev:app": "cd packages/app && turbo run dev",
"dev:landing": "cd packages/landing && turbo run dev",
"setup": "bun install && bun run build",
"start": "turbo run start",
"lint": "turbo run lint",
"clean": "turbo run clean",
"export": "turbo run export",
"typecheck": "turbo run typecheck"
},
"devDependencies": {
"@svgr/webpack": "^8.0.1",
"eslint": "^8.28.0",
"eslint-config-turbo": "latest",
"turbo": "^2.0.14"
},
"dependencies": {
"fathom-client": "^3.6.0"
}
}