Initial commit
Showing
.gitattributes
0 → 100644
.gitignore
0 → 100755
.vscode/launch.json
0 → 100644
.vscode/settings.json
0 → 100644
README.md
0 → 100755
app/controller/activity.ts
0 → 100644
app/controller/editor.ts
0 → 100644
app/extend/helper.ts
0 → 100644
app/middleware/access.ts
0 → 100644
app/model/pageInfo.ts
0 → 100644
app/router.ts
0 → 100644
app/typings/global.d.ts
0 → 100644
app/typings/module.d.ts
0 → 100644
app/typings/ves.d.ts
0 → 100644
app/view/.gitkeep
0 → 100644
app/view/README.md
0 → 100644
app/web/api/editor.api.ts
0 → 100644
app/web/asset/css/reset.css
0 → 100644
352 Bytes
4.19 KB
6.58 KB
35.2 KB
12.6 KB
app/web/config/dev.config.ts
0 → 100644
app/web/config/index.ts
0 → 100644
app/web/framework/app.ts
0 → 100644
app/web/index.d.ts
0 → 100644
352 Bytes
69.4 KB
12.4 KB
7.07 KB
12.6 KB
app/web/lib/Form/index.vue
0 → 100644
app/web/lib/Form/jy/jy.less
0 → 100644
app/web/lib/config.ts
0 → 100644
6.69 KB
app/web/page/editor/index.ts
0 → 100644
app/web/page/store/index.ts
0 → 100644
app/web/page/store/state.ts
0 → 100644
app/web/tsconfig.json
0 → 100644
app/web/typings/global.d.ts
0 → 100644
app/web/view/layout.html
0 → 100644
babel.config.js
0 → 100644
config/config.default.ts
0 → 100644
config/config.local.ts
0 → 100644
config/config.prod.ts
0 → 100644
config/config.test.ts
0 → 100644
config/plugin.local.ts
0 → 100644
config/plugin.ts
0 → 100644
config/tsconfig.json
0 → 100644
package.json
0 → 100644
| { | ||
| "name": "egg-vue-typescript-boilerplate", | ||
| "version": "4.0.3", | ||
| "description": "Egg + Vue + TypeScript Server Side Render(SSR) 服务端渲染骨架项目", | ||
| "scripts": { | ||
| "start": "egg-scripts start --port 7001 --workers 4", | ||
| "backend": "nohup egg-scripts start --port 7001 --workers 4 &", | ||
| "dev": "egg-bin dev -r egg-ts-helper/register", | ||
| "debug": "egg-bin debug -r egg-ts-helper/register", | ||
| "build": "npm run tsc && easy build -s", | ||
| "tsc": "ets && tsc -p tsconfig.json", | ||
| "clean": "ets clean", | ||
| "kill": "easy kill", | ||
| "lint": "tslint --project . -c tslint.json", | ||
| "fix": "tslint --fix --project . -c tslint.json 'app/web/**/*{.ts}'", | ||
| "ii": "npm install --registry https://registry.npm.taobao.org", | ||
| "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s" | ||
| }, | ||
| "dependencies": { | ||
| "@better-scroll/core": "^2.0.5", | ||
| "@hubcarl/json-typescript-mapper": "^2.0.0", | ||
| "@qg/cherry-ui": "^2.5.27", | ||
| "axios": "^0.18.1", | ||
| "egg": "^2.3.0", | ||
| "egg-cors": "^2.1.1", | ||
| "egg-scripts": "^2.10.0", | ||
| "egg-sequelize-ts": "^0.2.3-0", | ||
| "egg-view-vue-ssr": "^3.0.5", | ||
| "egg-webpack": "^4.4.7", | ||
| "egg-webpack-vue": "^2.0.0", | ||
| "element-ui": "^2.0.8", | ||
| "extend": "~3.0.0", | ||
| "font-awesome": "^4.7.0", | ||
| "iview": "^2.9.0", | ||
| "js-cookie": "^2.2.1", | ||
| "lodash": "^4.17.4", | ||
| "lodash-id": "^0.14.0", | ||
| "lowdb": "^1.0.0", | ||
| "mockjs": "^1.0.1-beta3", | ||
| "moment": "^2.17.1", | ||
| "mysql2": "^2.2.5", | ||
| "postcss-px2rem": "^0.3.0", | ||
| "qs": "^6.9.4", | ||
| "sa-sdk-javascript": "^1.15.27", | ||
| "sequelize": "^4.38.0", | ||
| "sequelize-typescript": "^0.6.6", | ||
| "shortid": "^2.2.8", | ||
| "showdown": "^1.8.6", | ||
| "simplemde": "^1.11.2", | ||
| "vue": "^2.6.12", | ||
| "vue-grid-layout": "^2.3.11", | ||
| "vue-property-decorator": "^7.2.0", | ||
| "vue-router": "^3.0.1", | ||
| "vuex": "^3.0.1", | ||
| "vuex-class": "^0.3.1", | ||
| "vuex-router-sync": "^5.0.0" | ||
| }, | ||
| "devDependencies": { | ||
| "@babel/plugin-syntax-jsx": "^7.12.1", | ||
| "@easy-team/easywebpack-cli": "^4.0.0", | ||
| "@easy-team/easywebpack-vue": "^4.0.0", | ||
| "@types/lodash": "^4.14.117", | ||
| "@types/lowdb": "^1.0.6", | ||
| "@types/node": "^10.12.0", | ||
| "@types/shortid": "^0.0.29", | ||
| "babel-plugin-transform-vue-jsx": "^4.0.1", | ||
| "cz-conventional-changelog": "^2.1.0", | ||
| "egg-bin": "^4.9.0", | ||
| "egg-scripts": "^2.10.0", | ||
| "egg-ts-helper": "^1.13.0", | ||
| "imagemin-webpack-plugin": "^2.4.2", | ||
| "less": "^3.12.2", | ||
| "less-loader": "^7.1.0", | ||
| "node-tool-utils": "^1.1.1", | ||
| "ts-loader": "^5.3.0", | ||
| "ts-node": "^7.0.1", | ||
| "tslint": "^5.9.1", | ||
| "tslint-eslint-rules": "^5.4.0", | ||
| "tslint-loader": "^3.5.3", | ||
| "typescript": "^3.9.2" | ||
| }, | ||
| "egg": { | ||
| "typescript": true | ||
| }, | ||
| "engines": { | ||
| "node": ">=8.0.0" | ||
| }, | ||
| "ci": { | ||
| "version": "8, 10" | ||
| }, | ||
| "repository": { | ||
| "type": "git", | ||
| "url": "git+https://github.com/easy-team/egg-vue-typescript-boilerplate.git" | ||
| }, | ||
| "author": "hubcarl@126.com", | ||
| "license": "MIT", | ||
| "homepage": "https://github.com/easy-team/egg-vue-typescript-boilerplate.git", | ||
| "config": { | ||
| "commitizen": { | ||
| "path": "./node_modules/cz-conventional-changelog" | ||
| } | ||
| } | ||
| } |
postcss.config.js
0 → 100644
tsconfig.json
0 → 100644
tslint.json
0 → 100644
typings/app/index.d.ts
0 → 100644
typings/app/model/index.d.ts
0 → 100644
typings/config/plugin.d.ts
0 → 100644
webpack.config.js
0 → 100644