-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 5.23 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 5.23 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "blui-react-native",
"version": "1.0.0",
"description": "",
"main": "index.js",
"keywords": [],
"author": "",
"license": "ISC",
"scripts": {
"installPackageDependencies": "yarn install && cd ./packages/auth-workflows && yarn install && cd ../component-library && yarn install && cd ../progress-icons && yarn install && cd ../themes && yarn install ",
"installShowcaseDependencies": "yarn install && cd ./examples/showcase && yarn install",
"installWorklowDependencies": "yarn install && cd ./examples/workflow && yarn install",
"installExpoWorklowDependencies": "yarn install && cd ./examples/workflowexample-expo && yarn install",
"installDesignPatternsDependencies": "yarn install && cd ./examples/designPatterns && yarn install",
"installExpoShowcaseDependencies": "yarn install && cd ./examples/expoShowcase && yarn install",
"installDocsDependencies": "yarn install && cd ./docs && yarn install",
"build:themes": "yarn install && cd ./packages/themes && yarn install && yarn build",
"build:components": "yarn install && cd ./packages/component-library && yarn install && yarn build",
"build:authWorkflows": "yarn install && cd ./packages/auth-workflows && yarn install && yarn build",
"build:progressIcons": "yarn install && cd ./packages/progress-icons && yarn install && yarn build",
"buildLink:themes": "yarn build:themes && bash ./scripts/linkThemes.sh",
"buildLink:components": "yarn build:components && bash ./scripts/linkComponents.sh",
"buildLink:authWorkflows": "yarn build:authWorkflows && bash ./scripts/linkAuthWorkflows.sh",
"buildLink:progressIcons": "yarn build:progressIcons && bash ./scripts/linkProgressIcons.sh",
"build-Link:all": "yarn link:themes && yarn link:components && yarn link:authWorkflows && yarn link:progressIcons",
"build:all": "yarn build:themes && yarn build:components && yarn build:authWorkflows && yarn build:progressIcons",
"link:all": "yarn buildLink:themes && yarn buildLink:components && yarn buildLink:authWorkflows && yarn buildLink:progressIcons",
"showcase-Android": "yarn installShowcaseDependencies && yarn link:all && cd ./examples/showcase && yarn android",
"showcase-iOS": "yarn installShowcaseDependencies && yarn link:all && cd ./examples/showcase && cd ios && pod install && cd .. && yarn ios",
"workflow-Android": "yarn installWorklowDependencies && yarn link:all && cd ./examples/workflow && yarn android",
"workflow-iOS": "yarn installWorklowDependencies && yarn link:all && cd ./examples/workflow && yarn ios",
"expo-workflow-Android": "yarn installExpoWorklowDependencies && yarn link:all && cd ./examples/workflowexample-expo && yarn android",
"expo-workflow-iOS": "yarn installExpoWorklowDependencies && yarn link:all && cd ./examples/workflowexample-expo && yarn ios",
"designPatterns-Android": "yarn installDesignPatternsDependencies && yarn link:all && cd ./examples/designPatterns && yarn android",
"designPatterns-iOS": "yarn installDesignPatternsDependencies && yarn link:all && cd ./examples/designPatterns && yarn ios",
"expo-showcase-Android": "yarn link:all && cd ./examples/expoShowcase && yarn android",
"expo-showcase-iOS": "yarn installExpoShowcaseDependencies && yarn link:all && cd ./examples/expoShowcase && yarn ios",
"startDocs": "yarn installDocsDependencies && yarn buildLink:components && cd ./docs && yarn start",
"lint": "eslint \"**/**.{tsx,ts}\"",
"lint:fix": "eslint \"**/**.{tsx,ts}\" --fix",
"prepare": "husky",
"prettier": "prettier '{docs,examples,packages}/**/*.{ts,tsx,js,jsx,json,css,scss,html}' --write",
"prettier:check": "prettier '{docs,examples,packages}/**/*.{ts,tsx,js,jsx,json,css,scss,html}' --check",
"test:authWorkflows": "cd ./packages/auth-workflows && yarn test",
"test:componentLibrary": "cd ./packages/component-library && yarn test",
"test:progressIcons": "cd ./packages/progress-icons && yarn test:functions",
"test:themes": "cd ./packages/themes && yarn test",
"test:showcase": "cd ./examples/showcase && yarn test",
"test:workflow": "cd ./examples/workflow && yarn test",
"test:all": "yarn test:authWorkflows && yarn test:componentLibrary && yarn test:progressIcons && yarn test:themes",
"watch:all": "node ./scripts/watch-all.js"
},
"devDependencies": {
"@brightlayer-ui/eslint-config": "^4.0.1",
"@brightlayer-ui/prettier-config": "^1.0.3",
"@eslint/compat": "^1.2.6",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.8.0",
"chokidar": "^4.0.1",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.0.0",
"firebase-tools": "^15.13.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"prettier": "^3.4.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.0.0"
},
"resolutions": {
"js-yaml": "^4.1.1"
},
"prettier": "@brightlayer-ui/prettier-config"
}