-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
67 lines (67 loc) · 2.21 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
{
"name": "react-native-gtoast",
"main": "src/index.dev.ts",
"version": "0.0.2",
"description": "Global Toast for react-native",
"author": "Ali El Majdaoui <[email protected]> https://github.com/alielmajdaoui",
"homepage": "https://github.com/alielmajdaoui/react-native-gtoast#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/alielmajdaoui/react-native-gtoast"
},
"bugs": {
"url": "https://github.com/alielmajdaoui/react-native-gtoast/issues"
},
"keywords": [
"toast",
"global",
"alert",
"react-native"
],
"license": "MIT",
"scripts": {
"start": "npm run config:dev && expo start",
"ios": "npm run config:dev && expo start --ios",
"build": "rm -rf dist/ && node_modules/.bin/tsc",
"config:dev": "json -I -4 -f package.json -e 'this.main=\"src/index.dev.ts\"'",
"config:npm": "json -I -4 -f package.json -e 'this.main=\"dist/index.js\"'",
"lint": "eslint .",
"verify": "npm run lint && npm run build",
"prepublishOnly": "npm run verify && npm run config:npm",
"postpublish": "npm run config:dev"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && node_modules/.bin/tsc --noEmit"
}
},
"files": [
"dist"
],
"dependencies": {
"nanoid": "^3.1.30"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@react-native-community/eslint-config": "^3.0.0",
"@types/react": "~16.9.35",
"@types/react-native": "~0.63.2",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"eslint": "^7.30.0",
"expo": "~42.0.0",
"expo-status-bar": "~1.0.4",
"husky": "^4.3.8",
"json": "^11.0.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-42.0.0.tar.gz",
"react-native-safe-area": "^0.5.1",
"react-native-safe-area-context": "^3.2.0",
"typescript": "~4.0.0"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-native": ">=0.59.0"
}
}