Initial commit
parents
Showing
.editorconfig
0 → 100644
.eslintignore
0 → 100644
.eslintrc.js
0 → 100644
.gitignore
0 → 100644
.prettierrc
0 → 100644
.wepyignore
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": "brand-event-library-mini-program", | ||
| "version": "0.0.2", | ||
| "description": "品牌事件库 for Mini Program", | ||
| "main": "dist/app.js", | ||
| "scripts": { | ||
| "dev": "wepy build --watch", | ||
| "build": "cross-env NODE_ENV=production wepy build --no-cache", | ||
| "dev:web": "wepy build --output web", | ||
| "clean": "find ./dist -maxdepth 1 -not -name 'project.config.json' -not -name 'dist' | xargs rm -rf", | ||
| "test": "echo \"Error: no test specified\" && exit 1" | ||
| }, | ||
| "wepy": { | ||
| "module-a": false, | ||
| "./src/components/list": "./src/components/wepy-list.wpy" | ||
| }, | ||
| "author": "LinChengbiao <1072907338@qq.com>", | ||
| "license": "MIT", | ||
| "dependencies": { | ||
| "redux": "^3.7.2", | ||
| "redux-actions": "^2.2.1", | ||
| "redux-promise": "^0.5.3", | ||
| "wepy-redux": "^1.5.3", | ||
| "wepy": "^1.6.0", | ||
| "wepy-async-function": "^1.4.4", | ||
| "wepy-com-toast": "^1.0.2" | ||
| }, | ||
| "devDependencies": { | ||
| "babel-eslint": "^7.2.1", | ||
| "babel-plugin-transform-class-properties": "^6.24.1", | ||
| "babel-plugin-transform-decorators-legacy": "^1.3.4", | ||
| "babel-plugin-transform-export-extensions": "^6.22.0", | ||
| "babel-plugin-transform-object-rest-spread": "^6.26.0", | ||
| "babel-preset-env": "^1.6.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", | ||
| "wepy-compiler-babel": "^1.5.1", | ||
| "wepy-compiler-less": "^1.3.10" | ||
| } | ||
| } |
project.config.json
0 → 100644
src/app.wpy
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/index.template.html
0 → 100644
src/mixins/test.js
0 → 100644
src/pages/index.wpy
0 → 100644
src/store/actions/counter.js
0 → 100644
src/store/actions/index.js
0 → 100644
src/store/index.js
0 → 100644
src/store/reducers/counter.js
0 → 100644
src/store/reducers/index.js
0 → 100644
src/store/types/counter.js
0 → 100644
src/store/types/index.js
0 → 100644
wepy.config.js
0 → 100644
Please
register
or
sign in
to comment