This repository was archived by the owner on Jan 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 5.21 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 5.21 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "litentryAuthenticator",
"version": "1.1.2",
"private": true,
"scripts": {
"android": "npx react-native run-android",
"build-prod:ios": "NODE_OPTIONS=--max_old_space_size=8192 npx react-native bundle --dev false --entry-file index.js --bundle-output ios/main.jsbundle --platform ios --assets-dest='./ios'",
"build": "yarn install && npx pod-install",
"xcbuild:debug": "xcodebuild -workspace ios/NativeSigner.xcworkspace -scheme NativeSigner -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build/NativeSigner",
"xcbuild:release": "xcodebuild -workspace ios/NativeSigner.xcworkspace -scheme NativeSigner -configuration Release -sdk iphonesimulator -derivedDataPath ios/build/NativeSigner -UseModernBuildSystem=YES | xcpretty -t && exit ${PIPESTATUS[0]}",
"xcbuild:githubActions": "xcodebuild -workspace ios/NativeSigner.xcworkspace -scheme NativeSigner -configuration GithubActions -sdk iphonesimulator -derivedDataPath ios/build/NativeSigner -UseModernBuildSystem=YES | xcpretty -t && exit ${PIPESTATUS[0]}",
"clean": "watchman watch-del-all && rm -rf /tmp/metro-bundler-cache-* && rm -rf /tmp/haste-map-react-native-packager-* && rm -rf node_modules/ && yarn cache clean --force && rm -rf ./android/app/build && rm -rf ./ios/build && (cd ios && pod deintegrate)",
"commit": "commit-wizard",
"ios": "npx react-native run-ios",
"lint": "npx eslint . --ext .js,.jsx,.ts,.tsx --ignore-path .gitignore",
"lint:fix": "npx eslint . --ext .js,.jsx,.ts,.tsx --fix --ignore-path .gitignore",
"start": "NODE_OPTIONS=--max_old_space_size=8192 npx react-native start",
"unit": "jest --config ./test/unit/jest.config.js",
"unit:debug": "node --inspect node_modules/.bin/jest --config ./test/unit/jest.config.js --watch --runInBand",
"build-e2e:android": "detox build -c android.emu.debug -l info",
"test-e2e:android": "detox test -c android.emu.debug -l info --noStackTrace",
"e2e:android": "yarn run build-e2e:android && yarn run test-e2e:android",
"build-e2e:ios": "detox build -c ios.sim.debug -l info",
"build-e2e:ci": "detox build -c ios.sim.release -l info",
"test-e2e:ios": "detox test -c ios.sim.debug -l info --noStackTrace",
"test-e2e:ci": "detox test -c ios.sim.release -l info --noStackTrace --cleanup",
"e2e:ios": "yarn run build-e2e:ios && yarn run test-e2e:ios",
"e2e": "yarn e2e:ios && yarn e2e:android"
},
"dependencies": {
"@polkadot/api": "1.28.1",
"@polkadot/reactnative-identicon": "0.53.1",
"@polkadot/types": "1.28.1",
"@polkadot/types-known": "1.28.1",
"@polkadot/util": "2.11.1",
"@polkadot/util-crypto": "2.11.1",
"@react-native-community/async-storage": "^1.11.0",
"@react-native-community/masked-view": "^0.1.6",
"@react-native-community/netinfo": "^5.9.3",
"@react-navigation/native": "^5.7.1",
"@react-navigation/stack": "^5.7.1",
"bignumber.js": "^9.0.0",
"hoist-non-react-statics": "^3.3.0",
"node-libs-react-native": "^1.0.3",
"react": "16.13.1",
"react-native": "0.63.0",
"react-native-camera": "^3.21.0",
"react-native-elements": "^1.2.6",
"react-native-gesture-handler": "^1.6.0",
"react-native-keyboard-aware-scroll-view": "^0.9.2",
"react-native-markdown-renderer": "^3.2.8",
"react-native-navbar-color": "^1.0.3",
"react-native-popup-menu": "^0.15.6",
"react-native-randombytes": "^3.5.3",
"react-native-screens": "^2.0.0-alpha.32",
"react-native-secure-storage": "git+https://github.com/paritytech/react-native-secure-storage.git#master",
"react-native-substrate-sign": "1.0.3",
"react-native-svg": "12.1.0",
"react-native-tabs": "^1.0.9",
"react-native-vector-icons": "^7.0.0",
"readable-stream": "^3.4.0",
"vm-browserify": "1.1.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-typescript": "^7.9.0",
"@babel/runtime": "^7.9.6",
"@react-native-community/eslint-config": "^1.1.0",
"@types/jasmine": "^3.5.10",
"@types/jest": "^25.2.1",
"@types/react": "^16.9.44",
"@types/react-native": "^0.63.4",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.28.0",
"babel-eslint": "10.1.0",
"babel-jest": "^25.5.1",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-rewrite-require": "^1.14.5",
"babel-plugin-tester": "^9.0.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react-hooks": "^3.0.0",
"husky": "^3.0.8",
"jest": "^25.4.0",
"jetifier": "^1.6.5",
"metro-react-native-babel-preset": "^0.59.0",
"prettier": "2.0.2",
"react-native-safe-area-context": "0.7.3",
"react-native-typescript-transformer": "^1.2.13",
"react-test-renderer": "16.13.1",
"reactotron-react-native": "5.0.0",
"ts-jest": "^25.4.0",
"typescript": "^3.9.7"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}