railbird-gql/package.json

46 lines
1.4 KiB
JSON
Raw Normal View History

{
2024-01-05 19:50:07 -07:00
"name": "railbird-rn",
"version": "1.0.0",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
2024-01-05 14:33:31 -07:00
"web": "expo start --web",
2024-01-05 15:24:24 -07:00
"lint": "eslint . --ext .js,.ts,.tsx",
2024-01-05 19:50:07 -07:00
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"start:dev": "ENVFILE=.env.development react-native start",
2024-01-06 18:42:41 -07:00
"start:prod": "ENVFILE=.env.production react-native start",
"test": "jest"
},
2024-01-06 18:42:41 -07:00
"jest": {
"preset": "jest-expo",
"transformIgnorePatterns": [
2024-01-06 19:32:00 -07:00
"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-05 19:19:45 -07:00
"@types/react": "~18.2.14",
2024-01-05 14:33:31 -07:00
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.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 18:42:41 -07:00
"jest": "^29.2.1",
"jest-expo": "~49.0.0",
"react": "18.2.0",
2024-01-05 14:33:31 -07:00
"react-native": "0.72.6",
2024-01-05 19:50:07 -07:00
"react-native-dotenv": "^3.4.9",
2024-01-05 14:33:31 -07:00
"typescript": "^5.3.3"
},
"devDependencies": {
2024-01-06 18:42:41 -07:00
"@babel/core": "^7.20.0",
2024-01-06 19:32:00 -07:00
"@types/jest": "^29.5.11",
"eslint-config-prettier": "^9.1.0"
},
"private": true
}