package.json 2.64 KB
Newer Older
silver47gin's avatar
init  
silver47gin committed
1 2
{
  "name": "HelloWorld",
silver47gin's avatar
silver47gin committed
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
  "version": "0.0.0",
  "private": true,
  "templateInfo": {
    "name": "react-native",
    "typescript": true,
    "css": "sass"
  },
  "scripts": {
    "prepare": "husky install",
    "build:rn": "taro build --type rn",
    "dev:rn": "npm run build:rn -- --watch --qr",
    "android": "react-native run-android --no-packager",
    "ios": "react-native run-ios --no-packager",
    "start": "npm run dev:rn",
    "podInstall": "pod-install",
    "upgradePeerdeps": "install-peerdeps @tarojs/taro-rn@3.3.9 -o -Y && install-peerdeps @tarojs/components-rn@3.3.9 -o -Y && install-peerdeps @tarojs/router-rn@3.3.9 -o -Y && pod-install",
    "server": "nodemon server/index.ts"
  },
  "browserslist": [
    "last 3 versions",
    "Android >= 4.1",
    "ios >= 8"
  ],
  "author": "",
  "dependencies": {
    "@babel/runtime": "^7.7.7",
    "@react-native-async-storage/async-storage": "^1.15.9",
    "@tarojs/cli": "^3.3.9",
    "@tarojs/components": "3.3.9",
    "@tarojs/react": "3.3.9",
    "@tarojs/runtime": "3.3.9",
    "@tarojs/taro": "3.3.9",
    "@tarojs/taro-rn": "3.3.9",
    "@types/express": "^4.17.13",
    "dayjs": "^1.10.7",
    "eslint-config-prettier": "^8.3.0",
    "eslint-plugin-prettier": "^3.3.1",
    "express": "^4.17.1",
    "husky": "^7.0.2",
    "mobx": "^6.3.3",
    "mobx-react-lite": "^3.2.1",
    "mobx-utils": "^6.0.4",
    "nanoid": "^3.1.29",
    "nodemon": "^2.0.15",
    "prettier": "^2.3.2",
    "react": "^17.0.0",
    "react-dom": "^17.0.0",
    "react-native": "^0.64.0",
    "react-native-amap-geolocation": "^1.1.2",
    "react-native-amap3d": "^3.0.1",
    "react-native-code-push": "^7.0.4",
    "react-native-gesture-handler": "^1.10.3",
    "react-native-safe-area-context": "^3.3.2",
    "react-native-svg": "^12.1.1",
    "rxjs": "^6.6.3",
    "ts-node": "^10.4.0"
  },
  "devDependencies": {
    "@babel/core": "^7.8.0",
    "@commitlint/cli": "^13.2.0",
    "@commitlint/config-conventional": "^13.2.0",
    "@tarojs/mini-runner": "3.3.9",
    "@tarojs/rn-runner": "3.3.9",
    "@tarojs/webpack-runner": "3.3.9",
    "@types/react": "^17.0.2",
    "@types/react-native": "^0.66.4",
    "@types/webpack-env": "^1.13.6",
    "@typescript-eslint/eslint-plugin": "^4.15.1",
    "@typescript-eslint/parser": "^4.15.1",
    "babel-plugin-module-resolver": "^4.1.0",
    "babel-preset-taro": "3.3.9",
    "eslint": "^6.8.0",
    "eslint-config-taro": "3.3.9",
    "eslint-plugin-import": "^2.12.0",
    "eslint-plugin-react": "^7.8.2",
    "eslint-plugin-react-hooks": "^4.2.0",
    "install-peerdeps": "^3.0.3",
    "pod-install": "^0.1.23",
    "stylelint": "9.3.0",
    "taro-iconfont-cli": "^3.3.0",
    "typescript": "^4.1.0"
  }
silver47gin's avatar
init  
silver47gin committed
85
}