-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.62 KB
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": "rollout-ui",
"description": "Rollout UI monorepo with shared ui-kit and ui-features packages",
"version": "0.0.1",
"main": "./index.js",
"type": "module",
"private": true,
"scripts": {
"demo": "turbo run build dev",
"build": "turbo run build",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"test": "turbo run test",
"storybook": "turbo run storybook --filter=@rollout/storybook",
"build-storybook": "turbo run build-storybook --filter=@rollout/storybook",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"shadcn:add": "pnpm dlx shadcn@latest add -c packages/ui-kit",
"rollout:setup": "bash scripts/setup.sh",
"rollout:preflight": "bash scripts/preflight.sh",
"rollout:doctor": "bash scripts/preflight.sh --verbose",
"rollout:new-page": "bash scripts/new-page.sh",
"rollout:update-page": "bash scripts/update-page.sh"
},
"author": "rollout",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rolloutrf/rollout-ui"
},
"homepage": "https://github.com/rolloutrf/rollout-ui",
"bugs": {
"url": "https://github.com/rolloutrf/rollout-ui/issues"
},
"packageManager": "pnpm@10.32.1",
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@eslint/js": "^9.39.4",
"eslint": "^9.39.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.4.0",
"prettier": "^3.8.1",
"shadcn": "^4.2.0",
"turbo": "2.8.17",
"typescript": "~5.9.3",
"typescript-eslint": "^8.58.1"
}
}