This repository was archived by the owner on May 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.62 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 3.62 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
121
122
123
124
125
126
127
128
129
{
"name": "frontatish",
"version": "0.4.6",
"description": "react-native master ui helpers",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"types": "lib/typescript/src/index.d.ts",
"react-native": "src/index.tsx",
"source": "src/index.tsx",
"files": [
"src",
"lib",
"android",
"ios",
"viserion.podspec"
],
"scripts": {
"test": "jest",
"typescript": "tsc --noEmit",
"lint": "eslint --ext .js,.ts,.tsx .",
"lint:fix": "eslint --fix",
"prepare": "bob build",
"example": "yarn --cwd example",
"pods": "node -e \"process.exit(require('os').platform() !== 'darwin')\" && test -d example/ios && cd example/ios && pod install || printf ''",
"bootstrap": "yarn example && yarn && yarn pods",
"release": "release-it",
"release:minor": "release-it minor",
"release:major": "release-it major",
"release:patch": "release-it patch",
"release:minor-alpha": "release-it minor --preRelease=alpha",
"release:minor-beta": "release-it minor --preRelease=beta",
"release:minor-rc": "release-it minor --preRelease=rc",
"release:major-alpha": "release-it major --preRelease=alpha",
"release:major-beta": "release-it major --preRelease=beta",
"release:major-rc": "release-it major --preRelease=rc",
"release:patch-alpha": "release-it patch --preRelease=alpha",
"release:patch-beta": "release-it patch --preRelease=beta",
"release:patch-rc": "release-it patch --preRelease=rc"
},
"keywords": [
"react-native",
"ios",
"android"
],
"repository": "https://github.com/Groww/frontatish",
"author": "growwdevs <devs@groww.in> (https://github.com/groww)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Groww/frontatish/issues"
},
"homepage": "https://github.com/Groww/frontatish#readme",
"devDependencies": {
"@commitlint/config-conventional": "^8.3.4",
"@react-native-community/bob": "^0.14.5",
"@react-native-community/eslint-config": "^1.1.0",
"@release-it/conventional-changelog": "^1.1.4",
"@types/jest": "^25.2.1",
"@types/react": "^16.9.19",
"@types/react-native": "0.62.13",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"commitlint": "^8.3.5",
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.2",
"prettier": "^2.0.5",
"react": "~16.13.1",
"react-native": "~0.62.2",
"release-it": "^13.5.8",
"typescript": "^3.8.3"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-gesture-handler": "*",
"react-native-reanimated": "*",
"react-native-vector-icons": "*"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules",
"<rootDir>/lib/"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"eslintIgnore": [
"node_modules/",
"lib/"
],
"release-it": {
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}"
},
"npm": {
"publish": true
},
"github": {
"release": true
}
},
"@react-native-community/bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
},
"dependencies": {}
}