-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
61 lines (61 loc) · 1.67 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
{
"name": "starter-kit",
"version": "4.0.0",
"description": "GBK Soft starter kit for css projects",
"main": "index.js",
"scripts": {
"start": "gulp serve",
"build": "gulp",
"debug": "gulp css-debug",
"status": "git status && exit 0",
"lint": "gulp lint:css && exit 0",
"reinstall": "rm -rf dist | rm -rf node_modules | yarn install",
"component": "yarn run plop component",
"module": "yarn run plop module",
"page": "yarn run plop page"
},
"author": "Vladimir Humeniuk",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^8.3.0",
"babel-core": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"browser-sync": "^2.23.7",
"cssnano": "^3.10.0",
"del": "^3.0.0",
"delete-empty": "^2.0.0",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.0",
"gulp-cache": "^1.0.2",
"gulp-clean-css": "^3.9.3",
"gulp-imagemin": "^4.1.0",
"gulp-load-plugins": "^1.5.0",
"gulp-newer": "^1.4.0",
"gulp-notify": "^3.0.0",
"gulp-postcss": "^7.0.0",
"gulp-pug": "^4.0.1",
"gulp-pug-linter": "^0.5.1",
"gulp-reporter": "^2.8.2",
"gulp-sass": "^4.0.1",
"gulp-size": "^3.0.0",
"gulp-sourcemaps": "^2.6.1",
"gulp-stats": "^0.0.4",
"gulp-stylelint": "^7.0.0",
"gulp-uglify": "^3.0.0",
"immutable-css": "^1.1.2",
"plop": "^2.0.0",
"postcss-assets": "^5.0.0",
"postcss-browser-reporter": "^0.5.0",
"postcss-debug": "^0.4.2",
"postcss-pxtorem": "^4.0.1",
"postcss-reporter": "^5.0.0",
"pre-commit": "^1.2.2",
"run-sequence": "^2.2.0",
"stylelint": "^9.2.0",
"stylelint-config-standard": "^18.2.0"
},
"pre-commit": [
"lint",
"status"
]
}