railbird-gql/package.json

49 lines
1.7 KiB
JSON
Raw Normal View History

{
2024-01-06 23:36:24 -07:00
"name": "railbird-rn",
"version": "1.0.0",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "cp .env.development .env && expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"lint": "eslint . --ext .js,.ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
2024-01-06 23:58:54 -07:00
"test": "jest --forceExit"
2024-01-06 23:36:24 -07:00
},
"jest": {
"preset": "jest-expo",
"transformIgnorePatterns": [
"node_modules/(?!((jest-)?react-native|@react-native(-community)?)|expo(nent)?|@expo(nent)?/.*|@expo-google-fonts/.*|react-navigation|@react-navigation/.*|@unimodules/.*|unimodules|sentry-expo|native-base|react-native-svg)"
]
},
"dependencies": {
2024-01-06 23:58:54 -07:00
"@apollo/client": "^3.8.8",
2024-01-06 23:36:24 -07:00
"@types/react": "~18.2.14",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"babel-plugin-inline-dotenv": "^1.7.0",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.1.0",
"expo": "~49.0.15",
"expo-status-bar": "~1.6.0",
2024-01-06 23:58:54 -07:00
"graphql": "^16.8.1",
2024-01-06 23:36:24 -07:00
"jest": "^29.2.1",
"jest-expo": "~49.0.0",
"react": "18.2.0",
"react-native": "0.72.6",
"react-native-dotenv": "^3.4.9",
"typescript": "^5.3.3"
},
"devDependencies": {
"@babel/core": "^7.20.0",
2024-01-08 17:26:31 -07:00
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^12.4.3",
2024-01-06 23:36:24 -07:00
"@types/jest": "^29.5.11",
"eslint-config-prettier": "^9.1.0"
},
"private": true
}