forked from demokratie-live/democracy-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 4.59 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
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "democracyclient",
"version": "1.2.2",
"private": true,
"scripts": {
"test": "eslint . && jest",
"test:jest": "jest",
"test:lint": "eslint .",
"test:flow": "flow",
"test:depcheck": "depcheck --ignore-dirs=android,coverage,ios",
"start": "node node_modules/react-native/local-cli/cli.js start",
"start:android": "yarn start:android:dev",
"start:android:dev": "react-native run-android --variant=devDebug --appIdSuffix=dev",
"start:android:internal": "react-native run-android --variant=internalDebug --appIdSuffix=internal",
"start:android:alpha": "react-native run-android --variant=alphaDebug --appIdSuffix=alpha",
"start:android:beta": "react-native run-android --variant=betaDebug --appIdSuffix=beta",
"start:android:production": "react-native run-android --variant=productionDebug",
"start:ios": "react-native run-ios",
"build:ios:clean": "cd ios && xcodebuild clean -project democracyclient.xcodeproj -configuration Release -alltargets -allowProvisioningUpdates -quiet",
"build:ios:archive": "cd ios && xcodebuild archive -project democracyclient.xcodeproj -scheme democracyclient-prod -archivePath build/archives/democracyclient.xcarchive -allowProvisioningUpdates -quiet",
"build:ios:ipa": "cd ios && xcodebuild -allowProvisioningUpdates -exportArchive -archivePath build/archives/democracyclient.xcarchive -exportPath build/ipa/democracyclient -exportOptionsPlist democracyclient/info.plist -allowProvisioningUpdates -quiet",
"build:ios": "npm run build:ios:clean && npm run build:ios:archive && npm run build:ios:ipa",
"build:android": "cd android && ./gradlew assembleRelease",
"build:all": "npm run build:android && npm run build:ios",
"build:font": "buildfont -p ./assets/svgs/DemocracyFont/ -F DemocracyFont",
"version": "./version-ios.sh",
"postinstall": "react-native-schemes-manager all"
},
"xcodeSchemes": {
"Debug": [
"Internal.Debug",
"Alpha.Debug",
"Beta.Debug",
"Production.Debug"
],
"Release": [
"Internal.Release",
"Alpha.Release",
"Beta.Release",
"Production.Release"
]
},
"dependencies": {
"apollo-cache-inmemory": "^1.1.5",
"apollo-cache-persist": "^0.1.1",
"apollo-client": "^2.3.8",
"apollo-link": "^1.0.7",
"apollo-link-context": "^1.0.7",
"apollo-link-error": "^1.0.7",
"apollo-link-http": "^1.3.2",
"apollo-link-rest": "^0.6.0",
"apollo-link-state": "^0.4.0",
"apollo-utilities": "^1.0.10",
"eslint": "^4.17.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"graphql": "^0.13.1",
"graphql-anywhere": "^4.1.3",
"graphql-tag": "^2.6.1",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.4",
"moment": "^2.20.1",
"prisma": "^1.0.11",
"prop-types": "^15.6.0",
"qs": "^6.0.0",
"react": "16.6.1",
"react-apollo": "^2.0.4",
"react-apollo-network-status": "^1.0.0",
"react-dom": "^16.3.0",
"react-native": "0.57.7",
"react-native-config": "^0.11.5",
"react-native-device-info": "0.21.2",
"react-native-keyboard-aware-scroll-view": "^0.6.0",
"react-native-keychain": "^3.0.0-rc.3",
"react-native-linear-gradient": "^2.4.0",
"react-native-material-tabs": "^3.8.1",
"react-native-navigation": "1.1.443",
"react-native-notifications": "https://github.com/demokratie-live/react-native-notifications/archive/1.1.24.tar.gz",
"react-native-pdf": "^5.0.9",
"react-native-rsa": "^0.0.3",
"react-native-sha256": "^1.1.1",
"react-native-svg": "^9.0.0",
"react-native-swiper": "^1.5.13",
"react-native-vector-icons": "^4",
"rn-fetch-blob": "^0.10.13",
"speakingurl": "^14.0.1",
"styled-components": "^4.1.1",
"typescript": "^2.6.2",
"why-did-you-update": "^1.0.6"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-transform-flow-strip-types": "^7.2.3",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^8.2.1",
"babel-jest": "^23.6.0",
"babel-preset-react-native": "4.0.0",
"buildfont": "^2.0.2",
"depcheck": "^0.6.9",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-flowtype": "^2.41.0",
"eslint-plugin-prettier": "^2.5.0",
"eslint-plugin-react-native": "^3.2.1",
"eslint-plugin-standard": "^3.0.1",
"flow-bin": "^0.65.0",
"jest": "22.1.4",
"prettier": "^1.10.2",
"react-native-schemes-manager": "^1.0.4",
"react-test-renderer": "16.6.1",
"reactotron-react-native": "^2.0.0"
}
}