-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.02 KB
/
package.json
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
{
"name": "@bambooapp/bamboo-atoms",
"version": "0.0.35",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"types": "lib/typescript/index.d.ts",
"files": [
"lib",
"repository",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"repository": "[email protected]:webbeetechnologies/bamboo-atoms.git",
"license": "MIT",
"scripts": {
"lint": "eslint .",
"type-check": "tsc --noEmit",
"prepare:husky": "husky install",
"prepare": "bob build",
"run:example": "yarn --cwd ./example start",
"run:storybook": "yarn --cwd ./example storybook",
"test:storybook": "yarn --cwd ./example test-storybook",
"bootstrap": "yarn --cwd ./example && yarn",
"bundle": "yarn prepare && mkdir -p dist && npm pack --pack-destination=dist",
"do-release": "npm publish ./dist/bambooapp-bamboo-atoms-$npm_package_version.tgz",
"release": "yarn bundle && yarn do-release",
"release:dev": "npm version prepatch --preid=dev && yarn bundle && yarn do-release --tag=dev"
},
"devDependencies": {
"@react-native-community/eslint-config": "2.0.0",
"@types/lodash.debounce": "^4.0.7",
"@types/lodash.isnil": "^4.0.7",
"@types/react": "^18.0.17",
"@types/react-native": "^0.69.5",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-native": "^0.69.4",
"react-native-builder-bob": "^0.18.3",
"react-native-web": "~0.18.7",
"typescript": "^4.6.1-rc"
},
"dependencies": {
"eventemitter2": "^6.4.9",
"lodash.debounce": "^4.0.8",
"lodash.isnil": "^4.0.0",
"ts-deepmerge": "^3.0.0"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
},
"eslintIgnore": [
"node_modules/",
"lib/"
]
}