Massive/package.json

83 lines
2.5 KiB
JSON
Raw Normal View History

2022-06-30 06:50:52 +00:00
{
"name": "massive",
"version": "0.0.1",
"private": true,
2022-07-12 03:54:04 +00:00
"license": "GPL-3.0-only",
2022-06-30 06:50:52 +00:00
"scripts": {
"android": "react-native run-android",
2022-07-16 04:12:46 +00:00
"release": "react-native run-android --variant=release",
2022-06-30 06:50:52 +00:00
"start": "react-native start",
"test": "jest",
2022-07-09 01:48:45 +00:00
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --quiet"
2022-06-30 06:50:52 +00:00
},
"dependencies": {
2022-07-03 01:50:01 +00:00
"@babel/preset-env": "^7.1.6",
"@react-native-async-storage/async-storage": "^1.17.7",
2022-07-09 04:38:57 +00:00
"@react-native-community/datetimepicker": "^6.2.0",
"@react-native-masked-view/masked-view": "^0.2.6",
"@react-navigation/drawer": "^6.4.3",
2022-07-03 01:50:01 +00:00
"@react-navigation/native": "^6.0.10",
"@react-navigation/stack": "^6.2.2",
"@types/d3-shape": "^3.1.0",
2022-07-03 01:50:01 +00:00
"@types/react-native-sqlite-storage": "^5.0.2",
"@types/react-native-svg-charts": "^5.0.12",
2022-07-03 01:50:01 +00:00
"@types/react-native-vector-icons": "^6.4.11",
2022-07-12 03:54:04 +00:00
"@welldone-software/why-did-you-render": "^7.0.1",
2022-07-09 00:49:07 +00:00
"babel-plugin-transform-remove-console": "^6.9.4",
2022-06-30 06:50:52 +00:00
"react": "18.0.0",
2022-07-03 01:50:01 +00:00
"react-devtools": "^4.24.7",
2022-07-01 01:42:42 +00:00
"react-native": "0.69.1",
"react-native-document-picker": "^8.1.1",
"react-native-file-access": "^2.4.3",
2022-07-03 01:50:01 +00:00
"react-native-gesture-handler": "^2.5.0",
2022-07-08 12:11:10 +00:00
"react-native-linear-gradient": "^2.6.2",
2022-07-09 04:38:57 +00:00
"react-native-modal-datetime-picker": "^13.1.2",
2022-07-04 01:41:44 +00:00
"react-native-pager-view": "^5.4.24",
2022-07-03 01:50:01 +00:00
"react-native-paper": "^4.12.2",
"react-native-reanimated": "^2.9.0",
"react-native-safe-area-context": "^4.3.1",
"react-native-screens": "^3.14.0",
"react-native-sqlite-storage": "^6.0.1",
2022-07-08 12:11:10 +00:00
"react-native-svg": "^12.3.0",
"react-native-svg-charts": "^5.4.0",
2022-07-04 01:41:44 +00:00
"react-native-tab-view": "^3.1.1",
2022-07-03 01:50:01 +00:00
"react-native-vector-icons": "^9.2.0"
2022-06-30 06:50:52 +00:00
},
"devDependencies": {
"@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.69.0",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"babel-jest": "^26.6.3",
"eslint": "^7.32.0",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.70.3",
"react-test-renderer": "18.0.0",
"typescript": "^4.4.4"
},
2022-07-09 01:48:45 +00:00
"eslintConfig": {
"extends": "react-app",
"rules": {
"curly": "off"
}
},
2022-06-30 06:50:52 +00:00
"resolutions": {
"@types/react": "^18"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
2022-07-07 06:08:25 +00:00
}