Files
devhub/packages/mobile/package.json
Bruno Lemos d3ec00cf77 v0.47.4
2019-03-08 10:30:31 -03:00

56 lines
1.5 KiB
JSON

{
"name": "@devhub/mobile",
"version": "0.47.4",
"private": false,
"scripts": {
"clean": "cd .",
"compile": "tsc -b",
"format": "prettier --write '{.,src/**}/*.{js,jsx,ts,tsx}'",
"lint": "tslint -p .",
"prepare": "cd .. && yarn patch-package",
"start": "node ../../node_modules/react-native/local-cli/cli.js start",
"studio": "open -a /Applications/Android\\ Studio.app ./android/",
"test": "jest",
"tsc": "tsc -b",
"xcode": "open ios/devhub.xcworkspace"
},
"dependencies": {
"@devhub/components": "0.47.4",
"jsc-android": "236355.1.1",
"metro-react-native-babel-preset": "^0.51.0",
"react": "16.8.1",
"react-native": "npm:@brunolemos/react-native@latest",
"react-native-firebase": "^5.1.1",
"react-native-google-analytics-bridge": "^7.0.0",
"react-native-screens": "^1.0.0-alpha.16"
},
"jest": {
"preset": "react-native",
"setupFiles": [
"./jest/setup.js"
],
"globals": {
"ts-jest": {
"useBabelrc": true
}
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"transform": {
"^.+\\.(jsx?)$": "<rootDir>/node_modules/babel-jest",
"^.+\\.(tsx?)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/.history/"
],
"cacheDirectory": ".jest/cache"
}
}