-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.86 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
{
"name": "rn-app-tour",
"version": "1.0.0",
"description": "App tour for React Native.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"/lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/QuentinGprd/rn-app-tour.git"
},
"keywords": [
"react-native",
"app-tour"
],
"scripts": {
"publish:local": "./scripts/publish-local.sh",
"example:android": "cd ./Example && yarn && yarn android && cd ../",
"example:ios": "cd ./Example && yarn && npx pod-install && yarn ios && cd ../",
"build": "rm -rf ./lib && tsc",
"prettier": "./node_modules/.bin/prettier --write",
"lint": "./node_modules/.bin/eslint --fix",
"test": "./node_modules/.bin/jest",
"prepare": "husky install"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"npx prettier --write",
"npx eslint --fix"
]
},
"author": "Quentin Gaspard (https://github.com/QuentinGprd)",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@testing-library/jest-native": "^4.0.5",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/react-native": "^10.1.1",
"@types/jest": "^28.1.6",
"@types/react-native": "^0.69.2",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.0",
"jest": "^28.1.3",
"lint-staged": "^13.0.3",
"metro-react-native-babel-preset": "^0.71.3",
"mockdate": "^3.0.5",
"prettier": "^2.7.1",
"react": "^18.0.2",
"react-native": "^0.69.2",
"react-native-svg": "^12.4.0",
"react-test-renderer": "^18.2.0",
"typescript": "^4.7.4"
},
"peerDependencies": {
"react": "^18.0.2",
"react-native": "^0.69.2",
"react-native-svg": "^12.4.0"
}
}