Files
devhub/packages/mobile/package.json
2019-05-06 07:35:09 -03:00

57 lines
1.5 KiB
JSON

{
"name": "@devhub/mobile",
"version": "0.90.0-beta.2",
"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 --projectRoot=../../",
"studio": "open -a /Applications/Android\\ Studio.app ./android/",
"test": "jest",
"tsc": "tsc -b",
"xcode": "open ios/devhub.xcworkspace"
},
"dependencies": {
"@devhub/components": "0.90.0-beta.2",
"metro-react-native-babel-preset": "0.53.1",
"react": "16.8.6",
"react-native": "0.59.1",
"react-native-firebase": "5.2.3",
"react-native-google-analytics-bridge": "7.1.0",
"react-native-inappbrowser-reborn": "2.0.0",
"react-native-screens": "1.0.0-alpha.22",
"react-native-store-review": "0.1.5"
},
"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"
}
}