-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
85 lines (85 loc) · 2.39 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
{
"name": "gulp-gold",
"description": "Custom Gulp pack",
"version": "2.0.0",
"main": "gulpfile.js",
"author": "Artur Parkhisenko <[email protected]> (https://arturparkhisenko.github.io/)",
"homepage": "https://github.com/arturparkhisenko/gulp-gold/",
"repository": "arturparkhisenko/gulp-gold",
"bugs": {
"url": "https://github.com/arturparkhisenko/gulp-gold/issues"
},
"license": "MIT",
"keywords": [
"html",
"css",
"js",
"build",
"tool",
"assets",
"babel",
"webpack",
"postcss",
"gulp"
],
"engineStrict": true,
"engines": {
"node": ">= 16.9"
},
"scripts": {
"build": "cross-env NODE_ENV=production gulp",
"dev": "npm run start",
"format": "npm run formatScripts",
"formatScripts": "prettier --write './src/scripts/**/*.js'",
"gulp": "./node_modules/.bin/gulp",
"lint": "npm run lintStyles && npm run lintScripts",
"lintScripts": "gulp lintScripts",
"lintStyles": "gulp lintStyles",
"np": "np --no-yarn",
"prod": "cross-env NODE_ENV=production gulp serve",
"start": "cross-env NODE_ENV=development gulp serve",
"test": "echo \"Error: no test specified\""
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/eslint-parser": "^7.16.5",
"@babel/plugin-transform-runtime": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"babel-loader": "^8.2.3",
"browser-sync": "^2.27.7",
"cross-env": "^7.0.3",
"cssnano": "^5.0.14",
"del": "^6.0.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"fancy-log": "^1.3.3",
"gulp": "^4.0.2",
"gulp-eslint": "^6.0.0",
"gulp-htmlmin": "^5.0.1",
"gulp-if": "^3.0.0",
"gulp-imagemin": "^8.0.0",
"gulp-load-plugins": "^2.0.7",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^9.0.1",
"gulp-rename": "^2.0.0",
"gulp-size": "^4.0.1",
"gulp-sourcemaps": "^3.0.0",
"gulp-stylelint": "^13.0.0",
"plugin-error": "^1.0.1",
"postcss": "^8.4.5",
"postcss-browser-reporter": "^0.6.0",
"postcss-import": "^14.0.2",
"postcss-preset-env": "^7.1.0",
"postcss-reporter": "^7.0.5",
"postcss-url": "^10.1.3",
"stylelint": "^14.2.0",
"stylelint-config-standard": "^24.0.0",
"webpack": "^5.65.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"@babel/runtime": "^7.16.7"
}
}