feat: 完成日期时间选择器组件的开发
parents
Showing
.editorconfig
0 → 100644
.eslintrc
0 → 100644
.gitignore
0 → 100644
.npmrc
0 → 100644
README.md
0 → 100644
babel.config.js
0 → 100644
config/dev.js
0 → 100644
config/index.js
0 → 100644
config/prod.js
0 → 100644
package.json
0 → 100644
{ | |||
"name": "taro_demo", | |||
"version": "1.0.0", | |||
"private": true, | |||
"description": "", | |||
"templateInfo": { | |||
"name": "default", | |||
"typescript": true, | |||
"css": "less" | |||
}, | |||
"scripts": { | |||
"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": [ | |||
"last 3 versions", | |||
"Android >= 4.1", | |||
"ios >= 8" | |||
], | |||
"author": "", | |||
"dependencies": { | |||
"@babel/runtime": "^7.7.7", | |||
"@linkseeks/standard": "^1.2.0", | |||
"@tarojs/components": "3.5.2", | |||
"@tarojs/helper": "3.5.2", | |||
"@tarojs/plugin-framework-react": "3.5.2", | |||
"@tarojs/plugin-platform-alipay": "3.5.2", | |||
"@tarojs/plugin-platform-jd": "3.5.2", | |||
"@tarojs/plugin-platform-qq": "3.5.2", | |||
"@tarojs/plugin-platform-swan": "3.5.2", | |||
"@tarojs/plugin-platform-tt": "3.5.2", | |||
"@tarojs/plugin-platform-weapp": "3.5.2", | |||
"@tarojs/react": "3.5.2", | |||
"@tarojs/router": "3.5.2", | |||
"@tarojs/runtime": "3.5.2", | |||
"@tarojs/shared": "3.5.2", | |||
"@tarojs/taro": "3.5.2", | |||
"@tarojs/taro-h5": "3.5.2", | |||
"react": "^18.0.0", | |||
"react-dom": "^18.0.0" | |||
}, | |||
"devDependencies": { | |||
"@babel/core": "^7.8.0", | |||
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.5", | |||
"@tarojs/cli": "3.5.2", | |||
"@tarojs/webpack5-runner": "3.5.2", | |||
"@types/react": "^18.0.0", | |||
"@types/webpack-env": "^1.13.6", | |||
"@typescript-eslint/eslint-plugin": "^5.20.0", | |||
"@typescript-eslint/parser": "^5.20.0", | |||
"babel-preset-taro": "3.5.2", | |||
"eslint": "^8.12.0", | |||
"eslint-config-taro": "3.5.2", | |||
"eslint-plugin-import": "^2.12.0", | |||
"eslint-plugin-react": "^7.8.2", | |||
"eslint-plugin-react-hooks": "^4.2.0", | |||
"react-refresh": "^0.11.0", | |||
"stylelint": "^14.4.0", | |||
"typescript": "^4.1.0", | |||
"webpack": "5.69.0" | |||
} | |||
} |
pnpm-lock.yaml
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
project.config.json
0 → 100644
project.tt.json
0 → 100644
src/app.config.ts
0 → 100644
src/app.less
0 → 100644
src/app.ts
0 → 100644
This diff is collapsed.
src/index.html
0 → 100644
src/pages/index/index.less
0 → 100644
src/pages/index/index.tsx
0 → 100644
tsconfig.json
0 → 100644
types/global.d.ts
0 → 100644
Please
register
or
sign in
to comment