-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.4 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "miniapp-template",
"version": "0.0.1",
"private": true,
"homepage": "https://github.com/Mister-Hope/miniapp-template",
"bugs": {
"url": "https://github.com/Mister-Hope/miniapp-template/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mister-Hope/miniapp-template.git"
},
"license": "MIT",
"author": {
"name": "Mr.Hope",
"email": "[email protected]",
"url": "https://mrhope.site"
},
"type": "module",
"scripts": {
"build": "gulp -f gulpfile.cjs build",
"changelog": "standard-version --skip.bump --skip.commit --skip.tag",
"clean": "node scripts/del.js",
"commit": "pnpm git-cz",
"dev": "gulp -f gulpfile.cjs watch",
"lint": "pnpm lint:prettier --write && pnpm lint:wxs --write && pnpm lint:wxml --write && eslint . --fix && pnpm lint:stylelint --fix",
"lint:check": "pnpm lint:prettier && pnpm lint:wxs && pnpm lint:wxml && eslint . && pnpm lint:stylelint",
"lint:prettier": "prettier --check .",
"lint:stylelint": "stylelint **/*.scss",
"lint:wxml": "prettier --check --parser html **/*.wxml",
"lint:wxs": "prettier --check --parser babel-flow **/*.wxs",
"package:check-update": "pnpm dlx npm-check-updates -u --deep",
"prepare": "husky"
},
"nano-staged": {
"**/*": "prettier --write --ignore-unknown",
"*.{js,ts}": "eslint --fix",
"*.wxss": "stylelint --fix",
"*.wxml": "prettier --parser html --write",
"*.wxs": "prettier --parser babel-flow --write"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-git"
}
},
"devDependencies": {
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@types/node": "22.9.3",
"commitizen": "4.3.1",
"cz-git": "1.11.0",
"del": "8.0.0",
"eslint": "9.14.0",
"eslint-config-mister-hope": "0.3.0",
"gulp": "5.0.0",
"gulp-rename": "2.0.0",
"gulp-replace": "1.1.4",
"gulp-sourcemaps": "3.0.0",
"gulp-typescript": "6.0.0-alpha.1",
"gulp5-sass-plugin": "2.0.4",
"husky": "9.1.7",
"miniprogram-api-typings": "4.0.2",
"nano-staged": "0.8.0",
"postcss": "8.4.49",
"prettier": "3.3.3",
"standard-version": "9.5.0",
"stylelint": "16.10.0",
"stylelint-config-hope": "7.0.4",
"typescript": "5.7.2"
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"css": "npm:@adobe/css-tools@^4.4.0"
}
}
}