1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee

通过微信开发者工具 商城模板 创建新小程序

This commit is contained in:
2023-03-06 23:52:24 +08:00
parent ada464a8cc
commit c21ff901d5
393 changed files with 52952 additions and 0 deletions

45
mini-program/package.json Normal file
View File

@@ -0,0 +1,45 @@
{
"name": "supermarket-pages",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --cache --fix --ext .js",
"check": "node config/eslintCheck.js",
"prepare": "husky install",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"author": "",
"license": "ISC",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js, ts}": "eslint --cache --fix",
"*.{js,ts,wxml,html,json,css,less}": [
"prettier --write"
]
},
"dependencies": {
"dayjs": "^1.9.3",
"tdesign-miniprogram": "^1.0.0",
"tslib": "^1.11.1"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"commitizen": "^4.3.0",
"conventional-changelog-cli": "^2.2.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^8.0.3",
"lint-staged": "^10.0.8",
"prettier": "^2.1.2"
}
}