-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 4.39 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 4.39 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
80
81
82
83
84
85
86
87
88
89
{
"name": "@applicaster/testpushtopics",
"version": "0.1.2",
"description": "Zapp screen plugin for displaying push notifications topic screen, was built for testing and as react-native screen plugin example.",
"main": "./export.js",
"engine": {
"node": "8.9.0",
"npm": "5.5.1"
},
"config": {
"react_version": "0_1_1",
"folder_name": "TestPushTopics"
},
"scripts": {
"test": "jest --passWithNoTests",
"jest": "jest",
"lint": "eslint .",
"start": "node node_modules/react-native/local-cli/cli.js start",
"clean:node": "rm -rf node_modules yarn.lock && yarn",
"build": "npm run build:ios && bpm run build:android",
"build:ios": "react-native bundle --platform ios --dev false --entry-file index.ios.js --bundle-output tmp/build/ios/index.ios.bundle.js",
"build:android": "react-native bundle --platform android --dev false --entry-file index.android.js --bundle-output tmp/build/android/index.android.bundle.js",
"build:staging": "npm run build:ios && npm run build:android",
"build:staging:ios": "react-native bundle --platform ios --dev true --entry-file index.ios.js --bundle-output tmp/build/ios/index.ios.bundle.js",
"build:staging:android": "react-native bundle --platform android --dev true --entry-file index.android.js --bundle-output tmp/build/android/index.android.bundle.js",
"deploy": "npm run deploy:ios && npm run deploy:android",
"deploy:ios": "npm run build:ios && aws s3 sync tmp/build/ios s3://assets-production.applicaster.com/zapp/react-native-bundles/$npm_package_config_folder_name/0_50_4/$npm_package_config_react_version/ios --region us-east-1 --grants read=uri=http://acs.amazonaws.com/groups/global/AllUsers",
"deploy:android": "npm run build:android && aws s3 sync tmp/build/android s3://assets-production.applicaster.com/zapp/react-native-bundles/$npm_package_config_folder_name/0_50_4/$npm_package_config_react_version/android --region us-east-1 --grants read=uri=http://acs.amazonaws.com/groups/global/AllUsers",
"deploy:staging": "npm run deploy:staging:ios && npm run deploy:staging:android",
"deploy:staging:ios": "npm run build:staging:ios && aws s3 sync tmp/build/ios s3://assets-staging.applicaster.com/zapp/react-native-bundles/staging/$npm_package_config_folder_name/0_50_4/$npm_package_config_react_version/ios --region us-east-1 --grants read=uri=http://acs.amazonaws.com/groups/global/AllUsers",
"deploy:staging:android": "npm run build:staging:android && aws s3 sync tmp/build/android s3://assets-staging.applicaster.com/zapp/react-native-bundles/$npm_package_config_folder_name/0_50_4/$npm_package_config_react_version/android --region us-east-1 --grants read=uri=http://acs.amazonaws.com/groups/global/AllUsers"
},
"repository": {
"type": "git",
"url": "git+https://github.com/applicaster-plugins/TestPushTopics"
},
"author": "Applicaster",
"license": "ISC",
"bugs": {
"url": "https://github.com/applicaster-plugins/TestPushTopics/issues"
},
"homepage": "https://github.com/applicaster-plugins/TestPushTopics#readme",
"dependencies": {
"@applicaster/london-rn-components": "^1.11.1",
"axios": "^0.17.1",
"prop-types": "^15.7.2",
"ramda": "^0.25.0"
},
"devDependencies": {
"@storybook/addon-actions": "3.4.8",
"@storybook/addon-links": "3.4.8",
"@storybook/addons": "3.4.8",
"@storybook/react-native": "3.4.8",
"babel-cli": "7.0.0-beta.3",
"babel-jest": "^23.6.0",
"babel-register": "^7.0.0-beta.3",
"eslint": "^4.11.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-react-native": "^2.3.2",
"jest": "^24.8.0",
"jest-cli": "^24.8.0",
"metro-react-native-babel-preset": "^0.56.3",
"react": "16.8.3",
"react-dom": "16.4.1",
"react-native": "0.59.10",
"react-native-zapp-bridge": "2.7.4",
"react-test-renderer": "^16.8.6",
"reactotron-react-js": "^1.12.2",
"reactotron-redux": "^1.12.2",
"redux-mock-store": "^1.5.1"
},
"peerDependencies": {
"react": "16.8.3",
"react-native": "0.59.10",
"react-native-zapp-bridge": "2.7.4"
},
"jest": {
"verbose": true,
"preset": "react-native",
"transformIgnorePatterns": [
"/node_modules//@applicaster/(?!london-rn-components).+\\.js$"
]
}
}