-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·46 lines (46 loc) · 1.2 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
{
"name": "web-ddd",
"version": "0.0.1",
"description": "Websites for DDD-China",
"main": "gulpfile.js",
"repository": {
"type": "git",
"url": "[email protected]:DDD-China/DDD-China-2019.git"
},
"author": "TWer",
"license": "MIT",
"bugs": {
"url": "https://github.com/DDD-China/DDD-China-2019/issues"
},
"scripts": {
"start": "cross-env NODE_ENV=development gulp dev_watch",
"build": "cross-env NODE_ENV=production gulp build",
"clean": "gulp clean"
},
"homepage": "https://github.com/DDD-China/DDD-China-2019",
"devDependencies": {
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"browser-sync": "^2.26.7",
"cross-env": "^5.2.0",
"del": "^4.1.1",
"gulp": "^3.9.1",
"gulp-changed": "^4.0.0",
"gulp-clean-css": "^4.2.0",
"gulp-file-include": "^1.2.0",
"gulp-if": "^2.0.2",
"gulp-imagemin": "^6.0.0",
"gulp-less": "^3.3.2",
"gulp-minify": "^3.1.0",
"gulp-newer": "^1.4.0",
"gulp-plumber": "^1.2.1",
"husky": "^2.4.0",
"imagemin-advpng": "^5.0.0",
"imagemin-jpeg-recompress": "^6.0.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}