-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathpackage.json
64 lines (64 loc) · 1.61 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
{
"name": "demo",
"version": "1.0.0",
"scripts": {
"dev": "gulp --continue",
"build": "gulp build",
"tsc": "./node_modules/typescript/bin/tsc",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"compile": "tsc",
"commit": "git cz"
},
"dependencies": {
"miniprogram-computed": "0.0.6",
"miniprogram-watch": "0.0.2",
"weui-miniprogram": "^0.3.0"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"autoprefixer": "^9.3.1",
"cz-conventional-changelog": "^3.0.2",
"del": "^3.0.0",
"dependency-tree": "^6.1.0",
"gulp": "^4.0.0",
"gulp-changed": "^3.2.0",
"gulp-clean": "^0.4.0",
"gulp-imagemin": "^5.0.3",
"gulp-json-transform": "^0.4.6",
"gulp-less": "^4.0.1",
"gulp-postcss": "^8.0.0",
"gulp-rename": "^1.4.0",
"gulp-sass": "^4.0.2",
"gulp-sourcemaps": "^2.6.4",
"gulp-sync": "^0.1.4",
"gulp-typescript": "^5.0.0-alpha.3",
"husky": "^1.3.1",
"match-requires": "^2.0.1",
"node-sass": "^4.13.0",
"path": "^0.12.7",
"prettier": "^1.15.2",
"pretty-quick": "^1.8.0",
"read-pkg-up": "^4.0.0",
"through2": "^2.0.3",
"tslint-config-prettier": "^1.16.0",
"typescript": "^3.1.6",
"webpack": "^4.12.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}