-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
116 lines (116 loc) · 3.87 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
116
{
"name": "web3studio-sojourn",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "concurrently -n w: npm:start:*",
"start:react-native": "react-native start",
"start:ganache": "yarn ganache-cli -i 42 -b 1 -d",
"start:migrate": "yarn truffle migrate --reset",
"migrate:rinkeby": "yarn truffle migrate --network rinkeby --contracts_build_directory=$(pwd)/src/contracts",
"ios": "react-native run-ios --simulator \"iPhone XS\"",
"lint": "eslint .",
"prettier": "prettier \"**/*.{js,json,css,md}\" --write",
"test": "yarn lint && yarn jest --coverage && yarn solidity-coverage && yarn devkit:build",
"post-install": "react-native link",
"detox:build": "detox build --configuration ios.sim.release",
"detox:test": "detox test --configuration ios.sim.release --cleanup",
"e2e": "yarn concurrently -k -s first \"yarn start\" \"yarn detox:build && yarn detox:test\"",
"ci": "./scripts/travis-test.sh",
"devkit": "next devkit",
"devkit:build": "cross-env-shell NODE_ENV=production next build devkit && next export devkit && touch devkit/out/.nojekyll"
},
"dependencies": {
"Base64": "^1.0.1",
"autotrack": "^2.4.1",
"crypto-js": "^3.1.9-1",
"deepmerge": "^2.2.1",
"moment": "^2.22.2",
"native-base": "^2.8.1",
"node-libs-react-native": "^1.0.3",
"react": "16.5.0",
"react-native": "0.57.2",
"react-native-aes-crypto": "^1.3.1",
"react-native-device-info": "^0.24.3",
"react-native-dotenv": "^0.2.0",
"react-native-secure-storage": "^0.1.1",
"react-native-securerandom": "^0.3.0",
"react-native-sssa": "^0.1.0",
"react-native-uport-connect": "^0.1.3",
"react-navigation": "^2.18.0",
"react-redux": "^5.0.7",
"redux": "^4.0.1",
"redux-persist": "^5.10.0",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"solidity-coverage": "^0.5.11",
"uuid": "^3.3.2",
"web3": "^1.0.0-beta.36",
"whatwg-url": "^7.0.0"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/runtime": "^7.1.2",
"@material-ui/core": "^3.4.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"chai": "^4.2.0",
"classnames": "^2.2.6",
"concurrently": "^4.0.1",
"cross-env": "^5.2.0",
"detox": "^9.0.4",
"dotenv": "^6.1.0",
"eslint": "^5.6.1",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-detox": "^1.0.0",
"eslint-plugin-jasmine": "^2.10.1",
"eslint-plugin-jsdoc": "^3.9.1",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-react-native": "^3.3.0",
"ganache-cli": "^6.1.8",
"husky": "^1.1.1",
"jest": "^23.6.0",
"jest-fetch-mock": "^1.7.4",
"metro-react-native-babel-preset": "^0.48.0",
"modular-scale": "^5.1.0",
"next": "^7.0.2",
"prettier": "^1.14.3",
"pretty-quick": "^1.7.0",
"prop-types": "^15.6.2",
"react-feather": "^1.1.4",
"react-jss": "^8.6.1",
"react-native-mock-render": "^0.1.2",
"react-test-renderer": "16.5.0",
"truffle": "^5.0.0-next.12",
"truffle-hdwallet-provider": "^1.0.0-web3one.0",
"web3-fake-provider": "^0.1.0"
},
"resolutions": {
"babel-core": "7.0.0-bridge.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"detox": {
"configurations": {
"ios.sim.release": {
"binaryPath": "ios/build/Build/Products/Release-iphonesimulator/sojourn.app",
"build": "xcodebuild -quiet -project ios/sojourn.xcodeproj -scheme sojourn -configuration Release -sdk iphonesimulator -derivedDataPath ios/build -UseModernBuildSystem=NO",
"type": "ios.simulator",
"name": "iPhone 7"
}
},
"test-runner": "jest",
"runner-config": "e2e/jest.config.js"
},
"rnpm": {
"assets": [
"./rc/assets/fonts"
]
}
}