-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.73 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.73 KB
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
{
"name": "gulp-starter",
"version": "1.1.0",
"description": "Gulp starter kit for frontend projects",
"repository": {
"type": "git",
"url": "https://github.com/codesect/gulp-starter.git"
},
"scripts": {
"build": "cross-env NODE_ENV='production' gulp build",
"gulp": "gulp",
"format": "prettier --write \"./{gulp,src}/**/*.{js,json}\"",
"lint": "eslint {gulp,src}",
"start": "cross-env NODE_ENV='development' gulp",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Zsolt Meszaros",
"private": true,
"license": "MIT",
"dependencies": {
"postcss-normalize": "^9.0.0"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/register": "^7.12.1",
"autoprefixer": "^9.8.6",
"babel-loader": "^8.1.0",
"browser-sync": "^2.26.13",
"core-js": "^3.6.5",
"cross-env": "^7.0.2",
"del": "^6.0.0",
"eslint": "^7.12.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.15.0",
"eslint-loader": "^3.0.2",
"eslint-plugin-import": "^2.22.1",
"gulp": "^4.0.2",
"gulp-axe-webdriver": "^3.1.3",
"gulp-clean-css": "^4.3.0",
"gulp-file-include": "^2.2.2",
"gulp-htmlmin": "^5.0.1",
"gulp-if": "^3.0.0",
"gulp-imagemin": "^7.1.0",
"gulp-inject": "^5.0.5",
"gulp-postcss": "^9.0.0",
"gulp-rev": "^9.0.0",
"gulp-sass": "^4.1.0",
"gulp-sourcemaps": "^2.6.5",
"imagemin-mozjpeg": "^9.0.0",
"node-sass": "^5.0.0",
"webpack-stream": "^6.1.0"
},
"bugs": {
"url": "https://github.com/codesect/gulp-starter/issues"
},
"homepage": "https://github.com/codesect/gulp-starter#readme"
}