-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.57 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.57 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
{
"name": "@flagship.io/react-native-sdk",
"version": "5.1.0",
"description": "Flagship SDK for React Native",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"README.md"
],
"exports": "./dist/index.js",
"scripts": {
"dev": "cross-env tsc --watch",
"test": "cross-env jest",
"lint": "cross-env eslint . --ext .tsx",
"clean": "cross-env rm -rf dist && mkdir dist",
"build:prod": "NODE_ENV=production cross-env yarn clean && tsc",
"build": "cross-env yarn clean && npm run generate:version && tsc",
"generate:version": "genversion --es6 src/sdkVersion.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flagship-io/flagship-react-native-sdk.git"
},
"peerDependencies": {
"@react-native-async-storage/async-storage": ">=1.17.0",
"react-native": ">=0.60.0"
},
"keywords": [
"mobile",
"react",
"native"
],
"author": "ABTasty",
"homepage": "https://github.com/flagship-io/flagship-react-native-sdk",
"license": "Apache-2.0",
"devDependencies": {
"@babel/cli": "^7.14.6",
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@react-native-async-storage/async-storage": "^1.17.11",
"@react-native-community/eslint-config": "^1.1.0",
"@testing-library/jest-native": "^3.1.0",
"@testing-library/react-hooks": "^3.4.1",
"@testing-library/react-native": "^13.0.1",
"@types/jest": "^27.4.1",
"@types/lodash": "^4.14.181",
"@types/react": "18.2.0",
"@types/react-native": "^0.73.0",
"@types/react-test-renderer": "^17.0.1",
"cross-env": "^7.0.3",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.0.0",
"genversion": "^3.1.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-react-native": "^18.0.0",
"metro-react-native-babel-preset": "^0.69.1",
"prettier": "^2.0.5",
"prettier-eslint": "^9.0.1",
"react": "^18.2.0",
"react-native": "^0.73",
"react-test-renderer": "18.2.0",
"setimmediate": "^1.0.5",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"packageManager": "yarn@4.9.0+sha512.5f5f00843eae735dfab6f0442524603e987ceca55e98b36eb0120f4e58908e5b1406545321e46627dca97d15d562f23dc13fb96cabd4e6bc92d379f619001e4e",
"dependencies": {
"@flagship.io/react-sdk": "^5.2.3"
}
}