bsky-app/package.json

90 lines
2.5 KiB
JSON
Raw Normal View History

2022-06-08 00:50:05 +02:00
{
"name": "pubsq",
2022-06-08 00:50:05 +02:00
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
2022-06-08 22:52:12 +02:00
"web": "react-scripts start",
2022-06-08 00:50:05 +02:00
"start": "react-native start",
"dev-pds": "node ./scripts/testing-server.mjs",
"dev-wallet": "cd node_modules/\\@adxp/auth-lobby && npm run start:authed",
2022-06-08 00:50:05 +02:00
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx"
},
"dependencies": {
"@adxp/auth": "*",
"@adxp/common": "*",
2022-06-09 20:03:25 +02:00
"@react-native-async-storage/async-storage": "^1.17.6",
2022-06-09 23:32:03 +02:00
"@react-navigation/bottom-tabs": "^6.3.1",
2022-06-08 01:56:31 +02:00
"@react-navigation/native": "^6.0.10",
"@react-navigation/native-stack": "^6.6.2",
2022-06-09 23:32:03 +02:00
"@react-navigation/stack": "^6.2.1",
2022-06-16 00:40:18 +02:00
"@zxing/text-encoding": "^0.9.0",
"base64-js": "^1.5.1",
2022-06-09 20:03:25 +02:00
"mobx": "^6.6.0",
2022-06-10 00:13:29 +02:00
"mobx-react-lite": "^3.4.0",
2022-06-09 20:03:25 +02:00
"mobx-state-tree": "^5.1.5",
2022-06-16 00:40:18 +02:00
"msrcrypto": "^1.5.8",
2022-06-08 00:50:05 +02:00
"react": "17.0.2",
2022-06-08 22:52:12 +02:00
"react-dom": "17.0.2",
2022-06-08 01:56:31 +02:00
"react-native": "0.68.2",
"react-native-inappbrowser-reborn": "^3.6.3",
2022-06-08 01:56:31 +02:00
"react-native-safe-area-context": "^4.3.1",
2022-06-08 22:52:12 +02:00
"react-native-screens": "^3.13.1",
2022-06-10 18:55:09 +02:00
"react-native-web": "^0.17.7",
"ucans": "0.9.1"
2022-06-08 00:50:05 +02:00
},
"devDependencies": {
"@adxp/auth-lobby": "*",
"@adxp/server": "*",
"@adxp/ws-relay": "*",
2022-06-08 00:50:05 +02:00
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"@types/jest": "^26.0.23",
"@types/react-native": "^0.67.3",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"babel-jest": "^26.6.3",
2022-06-08 22:52:12 +02:00
"babel-plugin-react-native-web": "^0.17.7",
2022-06-08 00:50:05 +02:00
"eslint": "^7.32.0",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.67.0",
2022-06-16 00:40:18 +02:00
"react-native-dotenv": "^3.3.1",
2022-06-08 22:52:12 +02:00
"react-scripts": "^5.0.1",
2022-06-08 00:50:05 +02:00
"react-test-renderer": "17.0.2",
"typescript": "^4.4.4"
},
"resolutions": {
"@types/react": "^17"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
2022-06-08 01:56:31 +02:00
],
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?react-native|react-clone-referenced-element|@react-native-community|rollbar-react-native|@fortawesome|@react-native|@react-navigation)"
2022-06-08 00:50:05 +02:00
]
2022-06-08 22:52:12 +02:00
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
2022-06-08 00:50:05 +02:00
}
}