-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 2.42 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
51
52
53
54
55
56
57
58
{
"name": "blui-react",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prettier": "prettier '{docs,apps,packages}/**/*.{ts,tsx,js,jsx,json,css,scss,html}' --write",
"prettier:check": "prettier '{docs,apps,packages}/**/*.{ts,tsx,js,jsx,json,css,scss,html}' --check",
"lint": "eslint \"**/**.{tsx,ts}\"",
"lint:fix": "eslint \"**/**.{tsx,ts}\" --fix",
"prepare": "husky",
"build:components": "cd packages/component-library && pnpm run build",
"start:showcase":"pnpm install && pnpm build:components && cd apps/showcase && pnpm install && pnpm start",
"build:theme": "pnpm --filter @brightlayer-ui/react-themes build",
"start:ThemeShowcase":"pnpm install && pnpm --filter @brightlayer-ui/react-themes build && pnpm --filter react-showcase-demo start",
"build:workflow": "pnpm --filter @brightlayer-ui/react-auth-workflow build",
"start:workflow:example":"pnpm install && pnpm --filter @brightlayer-ui/react-auth-workflow build && pnpm --filter example start",
"start:workflow:example-vite":"pnpm install && pnpm --filter @brightlayer-ui/react-auth-workflow build && pnpm --filter vite-example start",
"start:docs": "pnpm install && cd docs && pnpm install && pnpm start",
"start:storybook": "pnpm install && pnpm build:theme && pnpm build:components && cd apps/storybook && pnpm install && pnpm start"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.10.0",
"dependencies": {
"@brightlayer-ui/eslint-config": "^4.0.0",
"@brightlayer-ui/prettier-config": "^1.0.3",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.3",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"husky": "^9.1.7",
"i18next-browser-languagedetector": "^8.1.0",
"pnpm": "^10.11.0",
"prettier": "^3.5.3",
"react": "^19.1.0",
"react-router": "^7.5.3",
"typescript-eslint": "^8.32.0",
"eslint-plugin-storybook": "^9.0.12"
},
"prettier": "@brightlayer-ui/prettier-config",
"pnpm": {
"overrides": {
"nth-check": "^2.1.1",
"css-select": "^5.2.2",
"svgo": "^3.3.3",
"serialize-javascript": "^7.0.5",
"webpack-dev-server": "^5.2.5",
"js-yaml": "^4.2.0",
"lodash": "^4.18.0",
"underscore": "^1.13.8",
"semver@<5.7.2": "^5.7.2",
"minimatch@>=9.0.0 <9.0.7": "^9.0.7"
}
}
}