This repository has been archived by the owner on May 6, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
96 lines (96 loc) · 2.54 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
{
"name": "electramobile",
"version": "0.0.0",
"description": "Android & iOS mobile applications for Electra.",
"license": "MIT",
"private": true,
"scripts": {
"android": "npm run build && concurrently -r 'npm run watch' 'react-native run-android'",
"ios": "npm run build && concurrently -r 'npm run watch' 'react-native run-ios'",
"start": "react-native start",
"tsc": "tsc",
"build": "npm run lint; npm run tsc --",
"lint": "tslint -p tsconfig.json",
"watch": "npm run build -- -w",
"test": "jest --coverage",
"test:watch": "jest --watch --coverage"
},
"jest": {
"preset": "react-native",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"setupTestFrameworkScriptFile": "<rootDir>/jest.setup.js",
"testRegex": "(/__tests__/.*|(\\.|/)test)\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"globals": {
"ts-jest": {
"useBabelrc": true
}
}
},
"dependencies": {
"electra-js": "^0.1.1",
"numeral": "^2.0.6",
"react": "^16.2.0",
"react-native": "0.53.2",
"react-native-linear-gradient": "^2.4.0",
"react-native-vector-icons": "^4.5.0",
"react-navigation": "^1.0.0-beta.27"
},
"devDependencies": {
"@types/bitcoinjs-lib": "^3.3.1",
"@types/jest": "^22.1.3",
"@types/numeral": "0.0.22",
"@types/react": "^16.0.38",
"@types/react-native": "^0.52.13",
"@types/react-navigation": "^1.0.32",
"auth0-js": "^9.1.0",
"babel-jest": "^22.4.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react-native": "^4.0.0",
"concurrently": "^3.5.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jest": "^22.4.2",
"jsdom": "^11.6.2",
"react-native-mock-render": "0.0.19",
"react-test-renderer": "^16.2.0",
"ts-jest": "^22.0.4",
"tslint": "^5.9.1",
"tslint-react": "^3.5.1",
"typescript": "^2.7.2"
},
"author": {
"name": "Electra",
"email": "dev@electraproject.org",
"url": "https://electraproject.org"
},
"contributors": [
{
"name": "Ivan Gabriele",
"email": "ivan.gabriele@gmail.com",
"url": "https://www.ivangabriele.com"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/Electra-project/Electra-Mobile.git"
},
"bugs": {
"url": "https://github.com/Electra-project/Electra-Mobile/issues"
},
"homepage": "https://github.com/Electra-project/Electra-Mobile#readme",
"keywords": [
"Android",
"blockchain",
"eca",
"electra",
"iOS"
]
}