-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
54 lines (54 loc) · 1.88 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
{
"name": "MetaMaskMobile",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"run-ios": "node node_modules/react-native/local-cli/cli.js run-ios",
"run-android": "node node_modules/react-native/local-cli/cli.js run-android",
"test": "jest",
"tsc": "tsc --noEmit --pretty",
"fmt": "prettier --no-semi --single-quote --jsx-single-quote --space-before-function-paren --write '*.js' 'src/**/*.{j,t}s{,x}'",
"lint": "tslint -p . --type-check 'src/**/*.ts{,x}'",
"watch": "nodemon -e ts,tsx,js,json --watch src/ --exec 'yarn lint && yarn tsc && yarn fmt'"
},
"dependencies": {
"node-libs-react-native": "petejkim/node-libs-react-native#8b5a3a9700a08f6a1d8f58819479bf4d4d589970",
"react": "16.0.0-alpha.12",
"react-native": "0.46.0",
"react-native-navigation": "^1.1.134",
"react-native-wkwebview-reborn": "petejkim/react-native-wkwebview#a38c83174bdf6a0b0edc6f3aa7acb8885e7c2d96"
},
"devDependencies": {
"@types/jest": "^20.0.2",
"@types/node": "^8.0.9",
"@types/react": "^15.0.35",
"@types/react-native": "^0.44.18",
"babel-jest": "20.0.3",
"babel-preset-react-native": "2.0.0",
"jest": "20.0.4",
"nodemon": "^1.11.0",
"prettier-miscellaneous": "^1.5.2-fix",
"react-native-typescript-transformer": "1.1.2",
"react-test-renderer": "16.0.0-alpha.12",
"ts-jest": "^20.0.6",
"tslint": "^5.4.3",
"tslint-config-standard": "^6.0.1",
"tslint-react": "^3.0.0",
"typescript": "~2.4.1"
},
"jest": {
"preset": "react-native",
"transform": {
"^.+\\.jsx?$": "<rootDir>/node_modules/babel-jest",
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
}
}