Files
taro-template/package.json

107 lines
3.5 KiB
JSON
Raw Normal View History

2024-12-18 16:05:16 +08:00
{
"name": "taro-template",
"version": "1.0.0",
"private": true,
"description": "taro模版",
"templateInfo": {
"name": "redux",
"typescript": false,
"css": "Sass",
"framework": "React"
},
"scripts": {
"server": "pnpm run dev:weapp",
2024-12-18 17:49:02 +08:00
"postinstall": "weapp-tw patch",
2024-12-18 16:05:16 +08:00
"build:weapp": "taro build --type weapp",
"build:swan": "taro build --type swan",
"build:alipay": "taro build --type alipay",
"build:tt": "taro build --type tt",
"build:h5": "taro build --type h5",
"build:rn": "taro build --type rn",
"build:qq": "taro build --type qq",
"build:jd": "taro build --type jd",
"build:quickapp": "taro build --type quickapp",
"dev:weapp": "npm run build:weapp -- --watch",
"dev:swan": "npm run build:swan -- --watch",
"dev:alipay": "npm run build:alipay -- --watch",
"dev:tt": "npm run build:tt -- --watch",
"dev:h5": "npm run build:h5 -- --watch",
"dev:rn": "npm run build:rn -- --watch",
"dev:qq": "npm run build:qq -- --watch",
"dev:jd": "npm run build:jd -- --watch",
"dev:quickapp": "npm run build:quickapp -- --watch"
},
"browserslist": [
"defaults and fully supports es6-module",
"maintained node versions"
],
"author": "",
"dependencies": {
2025-01-02 09:05:08 +08:00
"@babel/runtime": "^7.26.0",
"@nutui/nutui-react-taro": "^2.7.4",
"@react-native/metro-config": "^0.73.5",
2024-12-18 16:05:16 +08:00
"@tarojs/components": "4.0.8",
2024-12-20 10:59:02 +08:00
"@tarojs/components-rn": "^4.0.8",
2024-12-18 16:05:16 +08:00
"@tarojs/helper": "4.0.8",
2024-12-18 17:49:02 +08:00
"@tarojs/plugin-framework-react": "4.0.8",
2024-12-19 09:00:30 +08:00
"@tarojs/plugin-html": "^4.0.8",
2024-12-18 16:05:16 +08:00
"@tarojs/plugin-platform-alipay": "4.0.8",
2024-12-18 17:49:02 +08:00
"@tarojs/plugin-platform-h5": "4.0.8",
2024-12-18 16:05:16 +08:00
"@tarojs/plugin-platform-jd": "4.0.8",
"@tarojs/plugin-platform-qq": "4.0.8",
2024-12-18 17:49:02 +08:00
"@tarojs/plugin-platform-swan": "4.0.8",
"@tarojs/plugin-platform-tt": "4.0.8",
"@tarojs/plugin-platform-weapp": "4.0.8",
"@tarojs/react": "4.0.8",
2024-12-20 10:59:02 +08:00
"@tarojs/rn-runner": "^4.0.8",
"@tarojs/rn-supporter": "^4.0.8",
2024-12-18 16:05:16 +08:00
"@tarojs/runtime": "4.0.8",
2024-12-20 10:59:02 +08:00
"@tarojs/runtime-rn": "^4.0.8",
2024-12-18 16:05:16 +08:00
"@tarojs/shared": "4.0.8",
"@tarojs/taro": "4.0.8",
2024-12-20 10:59:02 +08:00
"@tarojs/taro-rn": "^4.0.8",
2024-12-19 09:00:30 +08:00
"babel-plugin-import": "^1.13.8",
2025-01-02 09:05:08 +08:00
"expo": "~50.0.21",
"metro-react-native-babel-preset": "^0.77.0",
2024-12-20 10:59:02 +08:00
"react": "^18.3.1",
"react-dom": "^18.3.1",
2025-01-02 09:05:08 +08:00
"react-native": "^0.73.11",
"react-native-gesture-handler": "^2.21.2",
"react-redux": "^7.2.9",
"redux": "^4.2.1",
2024-12-18 17:49:02 +08:00
"redux-logger": "^3.0.6",
2025-01-02 09:05:08 +08:00
"redux-thunk": "^2.4.2",
2024-12-31 15:12:09 +08:00
"uqrcodejs": "^4.0.7"
2024-12-18 16:05:16 +08:00
},
"devDependencies": {
2025-01-02 09:05:08 +08:00
"@babel/core": "^7.26.0",
2024-12-18 17:49:02 +08:00
"@babel/plugin-proposal-class-properties": "7.14.5",
2025-01-02 09:05:08 +08:00
"@babel/preset-react": "^7.26.3",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
2024-12-18 16:05:16 +08:00
"@tarojs/cli": "4.0.8",
2025-01-02 09:17:34 +08:00
"@tarojs/plugin-mini-ci": "^4.0.8",
2024-12-18 16:05:16 +08:00
"@tarojs/taro-loader": "4.0.8",
"@tarojs/webpack5-runner": "4.0.8",
2025-01-02 09:05:08 +08:00
"@types/node": "^18.19.69",
"@types/react": "^18.3.18",
"@types/webpack-env": "^1.18.5",
2024-12-18 17:49:02 +08:00
"autoprefixer": "^10.4.20",
2024-12-18 16:05:16 +08:00
"babel-preset-taro": "4.0.8",
2024-12-19 09:00:30 +08:00
"cache-loader": "^4.1.0",
2025-01-02 09:05:08 +08:00
"eslint": "^8.57.1",
2024-12-18 17:49:02 +08:00
"eslint-config-taro": "4.0.8",
2025-01-02 09:05:08 +08:00
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^4.6.2",
2025-01-02 09:17:34 +08:00
"miniprogram-ci": "^2.0.10",
2024-12-18 17:49:02 +08:00
"postcss": "^8.4.49",
"react-refresh": "^0.11.0",
2025-01-02 09:05:08 +08:00
"stylelint": "^14.16.1",
2024-12-18 17:49:02 +08:00
"tailwindcss": "^3.4.17",
2024-12-19 09:00:30 +08:00
"thread-loader": "^4.0.4",
2025-01-02 09:05:08 +08:00
"ts-node": "^10.9.2",
2024-12-18 17:49:02 +08:00
"weapp-tailwindcss": "^3.7.0",
2024-12-20 10:59:02 +08:00
"webpack": "5.94.0"
2024-12-18 16:05:16 +08:00
}
}