-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 4.15 KB
/
Copy pathpackage.json
File metadata and controls
120 lines (120 loc) · 4.15 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
112
113
114
115
116
117
118
119
120
{
"name": "plugin-boilerplate",
"description": "🍛 A boilerplate to create BlueBase plugins or apps",
"author": "BlueEast Team <code@blueeast.com>",
"version": "1.0.0",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/index.js",
"repository": "github:BlueBaseJS/plugin-boilerplate",
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
},
"config": {
"react-native-storybook-loader": {
"searchDir": [
"src"
],
"pattern": "**/*.stories.tsx",
"outputFile": "./storybook/storyLoader.js"
}
},
"scripts": {
"setup": "node ./scripts/setup.js",
"start": "rnstl && expo start",
"android": "yarn start --android",
"ios": "yarn start --ios",
"web": "yarn start --web",
"eject": "expo eject",
"clean": "rimraf coverage dist tmp",
"build": "run-s clean && run-p build:* && cp -r ./dist/src/* ./dist && rm -r ./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:lint": "eslint src --ext=ts,tsx",
"test:prettier": "prettier \"src/**/*.ts\" --list-different",
"test:md": "remark . -f",
"test:only": "jest --coverage --forceExit --detectOpenHandles --runInBand",
"storybook-native": "NODE_ENV=STORYBOOK_NATIVE expo start",
"prestorybook-native": "rnstl",
"storybook-native-server": "start-storybook -p 7007",
"storybook": "node ./node_modules/@storybook/react/bin/index.js -p 6006 ",
"build-storybook": "node ./node_modules/@storybook/react/bin/build.js"
},
"dependencies": {
"@bluebase/components": "^7.0.1"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.12.9",
"@bluebase/code-standards": "^2.20.1",
"@bluebase/core": "^7.0.0",
"@bluebase/plugin-json-schema-components": "^4.0.1",
"@bluebase/plugin-launcher": "^2.0.2",
"@bluebase/plugin-material-ui": "^3.7.2",
"@bluebase/plugin-react-native-paper": "^4.0.0-beta.1",
"@bluebase/plugin-react-navigation": "^2.0.0",
"@bluebase/plugin-react-router": "^2.0.1",
"@bluebase/plugin-responsive-grid": "^1.0.0",
"@bluebase/plugin-settings-app": "^5.1.0",
"@bluebase/plugin-vector-icons": "^0.4.0",
"@bluebase/storybook-addon": "^3.0.0",
"@expo/webpack-config": "~0.16.2",
"@storybook/addon-actions": "^5.3",
"@storybook/addon-essentials": "^6.3.12",
"@storybook/addon-knobs": "^5.3",
"@storybook/addon-links": "^5.3",
"@storybook/addon-ondevice-actions": "^5.3.23",
"@storybook/addon-ondevice-knobs": "^5.3.25",
"@storybook/node-logger": "^6.3.12",
"@storybook/react": "^6.3.12",
"@storybook/react-native": "^5.3.25",
"@storybook/react-native-server": "^5.3.23",
"@types/enzyme": "^3.10.10",
"@types/enzyme-async-helpers": "^0.9.2",
"@types/jest": "^27.0.2",
"@types/react": "~17.0.21",
"@types/react-native": "~0.64.12",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.5",
"babel-loader": "^8.2.3",
"babel-plugin-istanbul": "^6.1.1",
"colors": "^1.4.0",
"enzyme": "^3.11.0",
"enzyme-async-helpers": "^0.9.1",
"eslint-plugin-prettier": "^4.0.0",
"expo": "^44.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": "17.0.1",
"react-dom": "17.0.1",
"react-native": "0.64.3",
"react-native-storybook-loader": "^2.0.4",
"react-native-gesture-handler": "^2.4.2",
"react-native-reanimated": "^2.8.0",
"react-native-web": "0.17.1",
"react-test-renderer": "^17.0.2",
"remark-cli": "^10.0.0",
"remark-preset-lint-recommended": "^6.1.1",
"replace-in-file": "^6.3.2",
"run-all": "^1.0.1",
"ts-jest": "^26.4.2",
"typescript": "~4.3.5"
},
"prettier": {
"singleQuote": true,
"useTabs": true,
"trailingComma": "es5"
},
"publishConfig": {
"access": "public"
}
}