-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.56 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
{
"name": "@victorzimnikov/react-native-hooks",
"version": "0.4.0",
"description": "Hooks for React Native",
"repository": "https://github.com/victorzimnikov/react-native-hooks.git",
"author": {
"email": "victor.zimnikov@yandex.ru",
"name": "Victor Zimnikov"
},
"license": "MIT",
"scripts": {
"dts": "tsc --noEmit",
"version": "npx @pika/pack",
"ci": "npm-run-all format lint dts",
"lint": "eslint --quiet \"src/**/*.{tsx,ts,js}\"",
"format": "prettier --write \"src/**/*.{tsx,ts,js}\""
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-standard-pkg",
{
"exclude": [
"__tests__/**/*"
]
}
],
[
"@pika/plugin-build-node"
],
[
"@pika/plugin-ts-standard-pkg"
]
]
},
"peerDependencies": {
"react": "^16.8.0",
"react-native": "^0.60.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@babel/runtime": "^7.5.5",
"@pika/pack": "^0.5.0",
"@pika/plugin-build-node": "^0.6.0",
"@pika/plugin-standard-pkg": "^0.6.0",
"@pika/plugin-ts-standard-pkg": "^0.6.0",
"@react-native-community/eslint-config": "^0.0.5",
"@types/react": "^16.9.2",
"@types/react-native": "^0.60.6",
"eslint": "^6.1.0",
"eslint-plugin-prettier": "^3.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"react": "^16.8.6",
"react-native": "^0.60.5",
"typescript": "^3.5.3"
}
}