89 строки
2.9 KiB
JSON
89 строки
2.9 KiB
JSON
|
{
|
||
|
"name": "my_first_pnp_device",
|
||
|
"version": "0.0.1",
|
||
|
"private": true,
|
||
|
"scripts": {
|
||
|
"android": "react-native run-android",
|
||
|
"ios": "react-native run-ios",
|
||
|
"start": "react-native start",
|
||
|
"build": "npm run format && npm run lint && tsc",
|
||
|
"test": "jest",
|
||
|
"lint": "tsc --noEmit && eslint --ext .js,.jsx,.ts,.tsx ./src",
|
||
|
"podinstall": "node ./podinstall.js",
|
||
|
"postinstall": "npx jetify && npm run podinstall",
|
||
|
"format": "prettier --write src/"
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"@react-native-community/art": "^1.2.0",
|
||
|
"@react-native-community/geolocation": "^2.0.2",
|
||
|
"@react-navigation/bottom-tabs": "^5.11.8",
|
||
|
"@react-navigation/native": "^5.9.3",
|
||
|
"@react-navigation/stack": "^5.14.3",
|
||
|
"events": "^3.3.0",
|
||
|
"react": "17.0.1",
|
||
|
"react-native": "0.64.0",
|
||
|
"react-native-animatable": "^1.3.3",
|
||
|
"react-native-azure-iotcentral-client": "^1.1.7",
|
||
|
"react-native-camera": "^3.43.0",
|
||
|
"react-native-charts-wrapper": "^0.5.7",
|
||
|
"react-native-circular-progress": "^1.3.7",
|
||
|
"react-native-device-info": "^8.0.5",
|
||
|
"react-native-elements": "^3.3.1",
|
||
|
"react-native-gesture-handler": "^1.10.3",
|
||
|
"react-native-get-random-values": "^1.6.0",
|
||
|
"react-native-image-picker": "^3.3.2",
|
||
|
"react-native-keychain": "^6.2.0",
|
||
|
"react-native-linear-gradient": "^2.5.6",
|
||
|
"react-native-maps": "^0.27.1",
|
||
|
"react-native-permissions": "^3.0.1",
|
||
|
"react-native-progress": "^4.1.2",
|
||
|
"react-native-qrcode-scanner": "^1.5.3",
|
||
|
"react-native-reanimated": "^2.0.0",
|
||
|
"react-native-safe-area-context": "^3.2.0",
|
||
|
"react-native-screens": "^2.18.1",
|
||
|
"react-native-sensors": "^7.2.0",
|
||
|
"react-native-svg": "^12.1.0",
|
||
|
"react-native-vector-icons": "^8.1.0"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"@babel/core": "^7.12.9",
|
||
|
"@babel/runtime": "^7.12.5",
|
||
|
"@react-native-community/eslint-config": "^2.0.0",
|
||
|
"@types/react": "^17.0.3",
|
||
|
"@types/react-native": "^0.63.51",
|
||
|
"@types/react-native-charts-wrapper": "^0.5.1",
|
||
|
"@types/react-native-elements": "^0.18.0",
|
||
|
"@typescript-eslint/eslint-plugin": "^4.17.0",
|
||
|
"@typescript-eslint/parser": "^4.17.0",
|
||
|
"babel-jest": "^26.6.3",
|
||
|
"babel-plugin-module-resolver": "^4.1.0",
|
||
|
"eslint": "7.14.0",
|
||
|
"eslint-plugin-react": "^7.22.0",
|
||
|
"eslint-plugin-react-hooks": "^4.2.0",
|
||
|
"jest": "^26.6.3",
|
||
|
"metro-react-native-babel-preset": "^0.64.0",
|
||
|
"prettier": "^2.2.1",
|
||
|
"react-native-svg-transformer": "^0.14.3",
|
||
|
"react-test-renderer": "17.0.1",
|
||
|
"typescript": "^4.2.3"
|
||
|
},
|
||
|
"jest": {
|
||
|
"preset": "react-native",
|
||
|
"transform": {
|
||
|
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js",
|
||
|
"\\.(ts|tsx)$": "ts-jest"
|
||
|
},
|
||
|
"globals": {
|
||
|
"ts-jest": {
|
||
|
"tsConfig": "tsconfig.jest.json"
|
||
|
}
|
||
|
},
|
||
|
"moduleFileExtensions": [
|
||
|
"ts",
|
||
|
"tsx",
|
||
|
"js"
|
||
|
],
|
||
|
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$"
|
||
|
}
|
||
|
}
|