-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.16 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
{
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/alkorlos/boilerplate"
},
"author": {
"name": "Dmitry Statsenko",
"email": "[email protected]"
},
"type": "module",
"main": "main.js",
"scripts": {
"dev": "npx gulp --env-file=.env.development",
"build": "rm -rf dist && npx gulp build --env-file=.env.production",
"build:obfuscation": "rm -rf dist && npx gulp build",
"webpack": "npx webpack --config webpack.config.dev.js",
"webpack:production": "npx webpack --config webpack.config.prod.js",
"stylelint": "npx stylelint \"./src/styles/**/*.pcss\"",
"stylelint:fix": "npx stylelint \"./src/styles/**/*.pcss\" --fix",
"eslint": "npx eslint \"./src/scripts/**/*.js\"",
"eslint:fix": "npx eslint \"./src/scripts/**/*.js\" --fix",
"deploy": "cd dist && rsync --archive --compress --delete . [email protected]:/var/www/u1126927/data/www/alkorlos.dev/bundler/",
"prepare": "husky install"
},
"lint-staged": {
"*.pcss": "npm run stylelint:fix",
"*.js": "npm run eslint:fix"
},
"dependencies": {
"@babel/core": "^7.23.5",
"@babel/preset-env": "^7.23.5",
"babel-loader": "^9.1.3",
"browser-sync": "^2.29.3",
"gulp": "^4.0.2",
"gulp-changed": "^5.0.1",
"gulp-csso": "^4.0.1",
"gulp-if": "^3.0.0",
"gulp-imagemin": "^9.0.0",
"gulp-notify": "^4.0.0",
"gulp-nunjucks": "^6.0.0",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^9.0.1",
"gulp-pretty-html": "^2.0.10",
"gulp-rename": "^2.0.0",
"gulp-rev": "^11.0.0",
"gulp-rev-collector": "^1.3.3",
"gulp-sourcemaps": "^3.0.0",
"gulp-svgstore": "^9.0.0",
"postcss": "^8.4.32",
"postcss-import": "^15.1.0",
"postcss-import-ext-glob": "^2.1.1",
"postcss-preset-env": "^9.3.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-middleware": "^6.1.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.23.3",
"eslint": "^8.55.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-no-autofix": "^1.2.3",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"stylelint": "^15.10.2",
"stylelint-order": "^6.0.3"
}
}