-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.36 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
{
"private": true,
"version": "1.0.0",
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=13.0.0",
"yarn": ">= 1.19.0"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "gulp -f packages/webphone/gulpfile.js build",
"lint": "yarn lint:js;yarn lint:scss",
"lint:js": "eslint {packages/**/src/**/*.js,gulp/**/*.js}",
"lint:scss": "stylelint 'packages/webphone/src/**/*.scss'",
"release": "standard-version"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"**/*.js": "eslint",
"**/*.scss": "stylelint"
},
"devDependencies": {
"@commitlint/cli": "7.x.x",
"@commitlint/config-conventional": "7.x.x",
"@garage11/vue-compiler-gulp": "1.x.x",
"ansi-colors": "4.x.x",
"browserify": "16.x.x",
"connect": "3.x.x",
"connect-mount": "1.x.x",
"cz-conventional-changelog": "^2.1.0",
"del": "2.x.x",
"eslint": "6.x.x",
"eslint-plugin-sort-class-members": "1.x.x",
"glob": "7.x.x",
"gulp": "4.x.x",
"gulp-add-src": "1.x.x",
"gulp-clean-css": "4.x.x",
"gulp-cli": "2.x.x",
"gulp-concat": "2.x.x",
"gulp-envify": "1.x.x",
"gulp-eslint": "6.x.x",
"gulp-filter": "6.x.x",
"gulp-flatten": "0.x.x",
"gulp-if-else": "1.x.x",
"gulp-imagemin": "6.x.x",
"gulp-insert": "0.x.x",
"gulp-livereload": "4.x.x",
"gulp-notify": "3.x.x",
"gulp-rename": "1.x.x",
"gulp-sass": "4.x.x",
"gulp-size": "2.x.x",
"gulp-sourcemaps": "2.x.x",
"gulp-stylelint": "10.x.x",
"gulp-svgo": "2.x.x",
"gulp-tape": "^1.x.x",
"gulp-template": "5.x.x",
"gulp-uglify": "3.x.x",
"gulplog": "1.x.x",
"husky": "3.x.x",
"lerna": "^3.19.0",
"lint-staged": "9.x.x",
"mkdirp": "0.x.x",
"puppeteer": "2.x.x",
"rc": "^1.2.8",
"standard-version": "7.x.x",
"stylelint": "12.x.x",
"stylelint-order": "3.x.x",
"stylelint-scss": "3.x.x",
"tap-spec": "5.x.x",
"tape": "4.x.x",
"tape-catch": "1.x.x",
"terser": "^4.4.2",
"through2": "3.x.x",
"tildify": "2.x.x",
"vinyl-buffer": "1.x.x",
"vinyl-source-stream": "2.x.x",
"vue-svgicon": "3.x.x",
"watchify": "3.x.x",
"yargs": "15.x.x"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
}
}