-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.52 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
43
44
45
46
47
48
49
50
{
"name": "helix-ui",
"description": "Helixbox Interfaces",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"test": "turbo run test",
"clean": "turbo run clean && pnpm store prune && rm -rf .turbo node_modules",
"helix": "pnpm --filter helix",
"home": "pnpm --filter helixbox-home",
"app": "pnpm --filter helixbox-app",
"build:helix": "pnpm --filter helix run build",
"build:home": "pnpm --filter helixbox-home run build",
"build:app": "pnpm --filter helixbox-app run build",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,yaml}\"",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo build --filter=./packages/* && changeset publish",
"prepare": "husky",
"postinstall": "pnpm --filter helixbox-app --filter @helixbridge/sdk-indexer run codegen:graphql"
},
"repository": {
"type": "git",
"url": "git+https://github.com/helix-bridge/helix-ui.git"
},
"keywords": [
"helixbox",
"helix",
"helix-ui",
"helixbox bridge"
],
"bugs": {
"url": "https://github.com/helix-bridge/helix-ui/issues"
},
"homepage": "https://github.com/helix-bridge/helix-ui#readme",
"devDependencies": {
"@changesets/cli": "^2.27.7",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"turbo": "^2.0.9"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
}
}