-
Notifications
You must be signed in to change notification settings - Fork 264
/
package.json
63 lines (63 loc) · 1.74 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
{
"name": "react-native-toast-message",
"version": "2.2.1",
"description": "Toast message component for React Native",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"/lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/calintamas/react-native-toast-message.git"
},
"keywords": [
"react-native",
"toast"
],
"scripts": {
"prepare": "husky install",
"build": "rm -rf ./lib && tsc",
"prettier": "./node_modules/.bin/prettier --write",
"lint": "./node_modules/.bin/eslint --fix",
"lint-staged": "./node_modules/.bin/lint-staged",
"test": "./node_modules/.bin/jest",
"yalc:push": "yarn build && yalc publish --push",
"quality": "yarn lint && tsc --noEmit"
},
"author": "Calin Tamas <calintamas2@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.15.8",
"@testing-library/jest-native": "^4.0.4",
"@testing-library/react-hooks": "^8.0.0",
"@testing-library/react-native": "^9.0.0",
"@types/jest": "^28.1.0",
"@types/react-native": "^0.67.3",
"eslint-config-backpacker-react-ts": "^0.3.0",
"husky": "^8.0.1",
"import-sort-style-module": "^6.0.0",
"jest": "^28.1.0",
"lint-staged": "^13.0.0",
"metro-react-native-babel-preset": "^0.71.0",
"prettier": "^2.4.1",
"prettier-plugin-import-sort": "^0.0.7",
"react-test-renderer": "^17.0.2",
"typescript": "^4.4.3",
"yalc": "^1.0.0-pre.53"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md}": "yarn prettier",
"*.{js,jsx,ts,tsx}": "yarn lint"
}
}