-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 4.4 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 4.4 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
90
91
92
93
94
{
"name": "@applicaster/videodetailscreen-rn",
"version": "1.0.0",
"description": "React Native configurable video details screen",
"main": "./export.js",
"engine": {
"node": "8.9.0",
"npm": "5.5.1"
},
"scripts": {
"test": "jest --forceExit",
"jest": "jest --forceExit",
"lint": "eslint .",
"format": "prettier --config ./.prettierrc --write \"{,!(node_modules)/**/}*.js\"",
"start": "node node_modules/react-native/local-cli/cli.js start",
"build": "npm run build:ios && npm 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/VideoDetailScreen/$npm_package_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/VideoDetailScreen/$npm_package_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-development.applicaster.com/zapp/react-native-bundles/VideoDetailScreen/$npm_package_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-development.applicaster.com/zapp/react-native-bundles/VideoDetailScreen/$npm_package_version/android --region us-east-1 --grants read=uri=http://acs.amazonaws.com/groups/global/AllUsers",
"plugin:update": "zappifest publish --manifest plugin-manifest.android.json && zappifest publish --manifest plugin-manifest.ios.json",
"postpublish": "npm run plugin:update"
},
"repository": {
"type": "git",
"url": "git+https://github.com/applicaster-plugins/VideoDetailScreen-RN"
},
"author": "Applicaster",
"license": "ISC",
"bugs": {
"url": "https://github.com/applicaster-plugins/VideoDetailScreen-RN/issues"
},
"homepage": "https://github.com/applicaster-plugins/VideoDetailScreen-RN#readme",
"dependencies": {
"@applicaster/london-rn-components": "^1.11.1",
"axios": "^0.17.1",
"moment": "^2.24.0",
"moment-timezone": "^0.5.25",
"prop-types": "^15.7.2",
"ramda": "^0.25.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-thunk": "^2.3.0",
"reselect": "^3.0.1",
"rxjs": "^5.5.2",
"seamless-immutable": "^7.1.2"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"babel-jest": "^24.8.0",
"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",
"husky": "^2.3.0",
"jest": "^24.8.0",
"jest-cli": "^24.8.0",
"metro-react-native-babel-preset": "^0.55.0",
"prettier": "^1.17.1",
"react": "16.8.3",
"react-native": "0.59.10",
"react-native-zapp-bridge": "latest",
"react-test-renderer": "^16.8.6"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-zapp-bridge": "*"
},
"jest": {
"verbose": true,
"preset": "react-native",
"transformIgnorePatterns": [
"/node_modules/@applicaster/(?!london-rn-components).+\\.js$"
]
},
"husky": {
"hooks": {
"pre-commit": "npm test && npm run lint",
"pre-push": "npm test && npm run lint && npm run format"
}
}
}