package.json 1.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "myApp",
  3. "version": "1.0.0",
  4. "private": true,
  5. "description": "",
  6. "templateInfo": {
  7. "name": "vuex",
  8. "typescript": false,
  9. "css": "sass"
  10. },
  11. "scripts": {
  12. "build:weapp": "taro build --type weapp",
  13. "build:swan": "taro build --type swan",
  14. "build:alipay": "taro build --type alipay",
  15. "build:tt": "taro build --type tt",
  16. "build:h5": "taro build --type h5",
  17. "build:rn": "taro build --type rn",
  18. "build:qq": "taro build --type qq",
  19. "build:quickapp": "taro build --type quickapp",
  20. "dev:weapp": "npm run build:weapp -- --watch",
  21. "dev:swan": "npm run build:swan -- --watch",
  22. "dev:alipay": "npm run build:alipay -- --watch",
  23. "dev:tt": "npm run build:tt -- --watch",
  24. "dev:h5": "npm run build:h5 -- --watch",
  25. "dev:rn": "npm run build:rn -- --watch",
  26. "dev:qq": "npm run build:qq -- --watch",
  27. "dev:quickapp": "npm run build:quickapp -- --watch"
  28. },
  29. "browserslist": [
  30. "last 3 versions",
  31. "Android >= 4.1",
  32. "ios >= 8"
  33. ],
  34. "author": "",
  35. "license": "MIT",
  36. "dependencies": {
  37. "@babel/runtime": "^7.7.7",
  38. "@tarojs/components": "3.0.7",
  39. "@tarojs/runtime": "3.0.7",
  40. "@tarojs/taro": "3.0.7",
  41. "qs": "^6.9.4",
  42. "vue": "^2.5.0",
  43. "vue-template-compiler": "^2.5.0",
  44. "vuex": "^3.5.1"
  45. },
  46. "devDependencies": {
  47. "@types/webpack-env": "^1.13.6",
  48. "@tarojs/mini-runner": "3.0.7",
  49. "@tarojs/webpack-runner": "3.0.7",
  50. "@babel/core": "^7.8.0",
  51. "babel-preset-taro": "3.0.7",
  52. "vue-loader": "^15.9.2",
  53. "eslint-plugin-vue": "^6.x",
  54. "eslint-config-taro": "3.0.7",
  55. "eslint": "^6.8.0",
  56. "stylelint": "9.3.0"
  57. }
  58. }