-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
95 lines (95 loc) · 2.91 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "miniprogram-demo",
"version": "1.0.0",
"main": "",
"author": "duyanren",
"license": "MIT",
"scripts": {
"lint": "eslint src --ext .js",
"precommit": "lint-staged",
"start": "gulp bumpversion && cross-env NODE_ENV=development gulp",
"build": "gulp bumpversion && cross-env NODE_ENV=production gulp",
"release": "standard-version",
"cpd": "gulp jscpd && jscpd ./jscpd -c .jscpd.json; open ./report/jscpd/jscpd-report.html && gulp clean-cpd",
"tag": "gulp tag"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"src/**/*.{js,ts}": [
"eslint",
"git add"
]
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.6.0",
"@babel/plugin-proposal-export-default-from": "^7.5.2",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.6.0",
"@babel/plugin-transform-object-assign": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/preset-typescript": "^7.3.3",
"@babel/runtime": "^7.6.0",
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@typescript-eslint/eslint-plugin": "^2.7.0",
"@typescript-eslint/parser": "^2.7.0",
"autoprefixer": "^9.5.1",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-array-includes": "^2.0.3",
"babel-plugin-copy-npm": "^0.2.1",
"babel-plugin-module-resolver": "^3.2.0",
"babel-plugin-ts-optchain": "^1.1.5",
"babel-preset-latest": "^6.24.1",
"babel-preset-minify": "^0.5.0",
"chalk": "^3.0.0",
"cross-env": "^6.0.3",
"del": "^5.0.0",
"eslint": "5.4.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"fs-extra": "^8.0.1",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-bump": "^3.1.3",
"gulp-csso": "^4.0.1",
"gulp-debug": "^4.0.0",
"gulp-filter": "^6.0.0",
"gulp-git": "^2.9.0",
"gulp-htmlmin": "^5.0.1",
"gulp-if": "^3.0.0",
"gulp-jsonminify": "^1.1.0",
"gulp-less": "^4.0.1",
"gulp-load-plugins": "^2.0.1",
"gulp-notify": "^3.2.0",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^8.0.0",
"gulp-rename": "^1.4.0",
"gulp-replace": "^1.0.0",
"gulp-sass": "^4.0.2",
"gulp-tap": "^2.0.0",
"gulp-terser": "^1.2.0",
"gulp-ts-alias": "^1.1.0",
"gulp-typescript": "^5.0.1",
"gulp-watch": "^5.0.1",
"husky": "^3.0.1",
"jscpd": "^2.0.15",
"lint-staged": "^9.2.1",
"merge-stream": "^2.0.0",
"postcss-pxtorpx": "^1.0.0",
"prettier": "^1.18.2",
"prettier-eslint": "^9.0.0",
"standard-version": "^7.0.0",
"ts-optchain": "^0.1.8",
"tslib": "^1.9.3",
"typescript": "^3.5.3",
"yargs": "^15.0.1"
}
}