Initial commit
Showing
.editorconfig
0 → 100644
.eslintcache
0 → 100644
.eslintignore
0 → 100644
.eslintrc.js
0 → 100644
.gitignore
0 → 100644
.prettierrc
0 → 100644
.wepycache
0 → 100644
.wepyignore
0 → 100644
app.js
0 → 100644
app.json
0 → 100644
app.wxss
0 → 100644
components/stopwatch.js
0 → 100644
components/stopwatch.json
0 → 100644
components/stopwatch.wxml
0 → 100644
components/stopwatch.wxss
0 → 100644
index/index.js
0 → 100644
index/index.json
0 → 100644
index/index.wxml
0 → 100644
index/index.wxss
0 → 100644
package-lock.json
0 → 100644
This source diff could not be displayed because it is too large. You can view the blob instead.
package.json
0 → 100644
| { | ||
| "name": "mini-programe-wepy", | ||
| "version": "0.0.2", | ||
| "description": "一个基于wepy的小程序项目", | ||
| "main": "weapp/app.js", | ||
| "scripts": { | ||
| "dev": "./node_modules/.bin/wepy build --watch", | ||
| "build": "cross-env NODE_ENV=production ./node_modules/.bin/wepy build --no-cache", | ||
| "clean": "rm -rf weapp", | ||
| "lint": "eslint --fix --cache --ext .js,.wpy src", | ||
| "test": "echo \"Error: no test specified\" && exit 1" | ||
| }, | ||
| "wepy": { | ||
| "module-a": false, | ||
| "./src/components/list": "./src/components/wepy-list.wpy" | ||
| }, | ||
| "author": "郝聪敏 <congmin.hao@quantgroup.cn>", | ||
| "license": "MIT", | ||
| "dependencies": { | ||
| "@wepy/core": "^2.0.0-alpha.16", | ||
| "@wepy/x": "^2.0.2", | ||
| "vant-weapp": "^0.5.28" | ||
| }, | ||
| "devDependencies": { | ||
| "@wepy/cli": "^2.0.0-alpha.28", | ||
| "@babel/core": "^7.1.0", | ||
| "@babel/preset-env": "^7.1.0", | ||
| "@wepy/babel-plugin-import-regenerator": "0.0.2", | ||
| "babel-eslint": "^7.2.1", | ||
| "cross-env": "^5.1.3", | ||
| "eslint": "^3.18.0", | ||
| "eslint-config-standard": "^7.1.0", | ||
| "eslint-friendly-formatter": "^2.0.7", | ||
| "eslint-plugin-html": "^2.0.1", | ||
| "eslint-plugin-promise": "^3.5.0", | ||
| "eslint-plugin-standard": "^2.0.1", | ||
| "wepy-eslint": "^1.5.3", | ||
| "less": "^3.8.1", | ||
| "@wepy/compiler-babel": "^2.0.1", | ||
| "@wepy/compiler-less": "^2.0.1" | ||
| } | ||
| } |
page/index.js
0 → 100644
page/index.json
0 → 100644
page/index.wxml
0 → 100644
page/index.wxss
0 → 100644
project.config.json
0 → 100644
sitemap.json
0 → 100644
src/app.wpy
0 → 100644
src/common/eventHub.js
0 → 100644
src/components/counter.wpy
0 → 100644
src/components/group.wpy
0 → 100644
src/components/groupitem.wpy
0 → 100644
src/components/list.wpy
0 → 100644
src/components/panel.wpy
0 → 100644
src/components/wepy-list.wpy
0 → 100644
src/mixins/test.js
0 → 100644
src/pages/index.wpy
0 → 100644
src/store/index.js
0 → 100644
static/.gitignore
0 → 100644
wepy.config.js
0 → 100644
Please register or sign in to comment