-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 4.33 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 4.33 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@bluebase/components",
"description": "A utility library to use & create BlueBase Components.",
"author": "BlueEast Team <code@blueeast.com>",
"version": "8.1.2",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/index.js",
"repository": "https://github.com/BlueBaseJS/components",
"license": "MIT",
"keywords": [],
"config": {},
"scripts": {
"start": "yarn run storybook",
"clean": "rimraf coverage dist tmp",
"watch": "tsc -w -p tsconfig.json",
"watch:test": "jest --watch",
"lint": "tslint -t stylish --project \"tsconfig.json\"",
"info": "npm-scripts-info",
"build": "run-s clean && run-p build:* && cp -rf ./dist/src/* ./dist && rm -rf ./dist/src",
"build:main": "tsc -p tsconfig.json && babel ./src --out-dir dist --ignore \"**/__tests__\",\"**/__stories__\" --extensions \".ts,.tsx,.js,.jsx\"",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:md": "remark . -o",
"fix:lint": "eslint src --ext=ts,tsx --fix .",
"test": "run-s build test:*",
"test_:only": "jest --coverage",
"test:lint": "npm run lint",
"test-prettier": "prettier \"src/**/*.ts\" --list-different",
"commit": "git-cz",
"report-coverage": "codecov && cat ./coverage/lcov.info | codacy-coverage",
"doc": "run-s doc:html && opn docs/index.html",
"doc:html": "typedoc src/ --target ES6 --mode file --out docs && cp -r assets docs",
"doc:json": "typedoc src/ --target ES6 --mode file --json docs/typedoc.json && cp -r assets docs",
"doc:build-storybook": "build-storybook -c ./bluebase/storybook/configs -o docs/storybook",
"doc:publish": "gh-pages -m \"[ci skip] Updates\" -d docs",
"reset": "git clean -dfx && git reset --hard && npm i",
"all": "run-s reset test cov:check doc:html",
"storybook:start": "bluebase storybook:start",
"storybook-native": "bluebase storybook-native:start",
"storybook": "start-storybook -p 6006 --config-dir ./bluebase/storybook/configs",
"screenshot": "storybook-chrome-screenshot -p 9001 -c ./bluebase/storybook/configs",
"build-storybook": "build-storybook",
"web:start": "bluebase web:start",
"expo:start": "bluebase expo:start"
},
"scripts-info": {
"info": "Display information about the package scripts",
"build": "Clean and rebuild the project",
"fix": "Try to automatically fix any linting problems",
"test": "Lint and unit test the project",
"watch": "Watch and rebuild the project on save",
"cov": "Rebuild, run tests, then create and open the coverage report",
"doc": "Generate HTML API documentation and open it in a browser",
"doc:json": "Generate API documentation in typedoc JSON format",
"reset": "Delete all untracked files and reset the repo to the last commit"
},
"engines": {
"node": ">=8.9"
},
"dependencies": {
"@react-native-picker/picker": "^2.5.0",
"@react-navigation/bottom-tabs": "^6.5.8",
"@react-navigation/drawer": "^6.6.3",
"@react-navigation/material-bottom-tabs": "^6.2.16",
"@react-navigation/material-top-tabs": "^6.6.3",
"@react-navigation/native": "^6.1.7",
"@react-navigation/native-stack": "^6.9.13",
"@react-navigation/stack": "^6.3.17"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.12.9",
"@bluebase/code-standards": "^2.22.4",
"@bluebase/core": "^8.2.0",
"@react-native-community/slider": "^4.4.3",
"@types/enzyme": "^3.10.10",
"@types/enzyme-async-helpers": "^0.9.2",
"@types/jest": "^27.0.2",
"@types/react": "~17.0.21",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.5",
"babel-loader": "^8.2.3",
"babel-plugin-istanbul": "^6.1.1",
"enzyme": "^3.11.0",
"enzyme-async-helpers": "^0.9.1",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^26.6.3",
"jest-enzyme": "^7.1.2",
"jsdom": "^18.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.72.4",
"react-native-web": "~0.19.6",
"react-test-renderer": "^17.0.2",
"remark-cli": "^10.0.0",
"remark-preset-lint-recommended": "^6.1.1",
"run-all": "^1.0.1",
"ts-jest": "^26.4.2",
"typescript": "^5.1.3"
},
"prettier": {
"singleQuote": true,
"useTabs": true,
"trailingComma": "es5"
},
"publishConfig": {
"access": "public"
}
}