-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
99 lines (99 loc) · 2.63 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
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
{
"name": "@gorhom/base-ui",
"version": "0.1.1",
"description": "A React Native Component library implementing the Base design language.",
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "lib/typescript/index.d.ts",
"react-native": "src",
"source": "src",
"files": [
"src",
"lib",
"fonts",
"react-native.config.js"
],
"keywords": [
"react-native",
"ios",
"android"
],
"repository": "https://github.com/gorhom/react-native-base-ui",
"author": "Mo Gorhom (https://gorhom.dev)",
"license": "MIT",
"bugs": {
"url": "https://github.com/gorhom/react-native-base-ui/issues"
},
"homepage": "https://github.com/gorhom/react-native-base-ui#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"test": "jest",
"typescript": "tsc --noEmit",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"build": "bob build && yarn copy-dts",
"copy-dts": "copyfiles -u 1 \"src/**/*.d.ts\" lib/typescript",
"release": "release-it",
"generate:component": "yarn hygen base-ui new",
"bootstrap": "yarn && cd ./storybook && yarn",
"start": "cd ./storybook && yarn start",
"ios": "cd ./storybook && yarn ios",
"android": "cd ./storybook && yarn android",
"web": "cd ./storybook && yarn web",
"storybook": "cd ./storybook && yarn storybook"
},
"dependencies": {
"is-react": "^1.5.4"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@react-native-community/eslint-config": "^2.0.0",
"@release-it/conventional-changelog": "^2.0.0",
"@types/jest": "^26.0.0",
"@types/react": "^16.9.19",
"@types/react-is": "^17.0.0",
"@types/react-native": "0.62.13",
"auto-changelog": "^2.2.1",
"copyfiles": "^2.4.1",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0",
"husky": "^4.3.6",
"hygen": "^6.0.4",
"jest": "^26.0.1",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"react": "16.13.1",
"react-native": "0.63.4",
"react-native-builder-bob": "^0.17.1",
"release-it": "^14.2.2",
"typescript": "^4.1.3"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules",
"<rootDir>/lib/"
]
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
}
}