This repository has been archived by the owner on Jul 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 212
/
package.json
93 lines (93 loc) · 2.57 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
86
87
88
89
90
91
92
93
{
"name": "NTH-start-project",
"version": "4.1.0",
"description": "Startkit for HTML/CSS/JS pages layout.",
"author": "Nikolay Gromov",
"license": "WTFPL",
"repository": {
"type": "git",
"url": "https://github.com/nicothin/NTH-start-project.git"
},
"scripts": {
"test": "npm run test:pug && npm run test:style && npm run test:js",
"test:pug": "glob-exec \"src/**/*.pug\" -- \"pug-lint {{files.join(' ')}}\"",
"test:style": "stylelint \"src/**/*.scss\" --syntax=scss",
"test:js": "eslint src/blocks/**/*.js src/js/**/*.js",
"start": "gulp",
"wlib": "cross-env BUILD_LIBRARY=true gulp",
"build": "cross-env MODE=production gulp build",
"lint-staged": "lint-staged"
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"lint-staged": {
"*.{js,pug,md}": "editorconfig-cli",
"*.pug": "pug-lint",
"*.scss": "stylelint --syntax=scss",
"*.js": "eslint"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@htmlacademy/editorconfig-cli": "^1.0.0",
"autoprefixer": "^10.2.4",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"browser-sync": "^2.26.7",
"cpy": "^8.1.0",
"cross-env": "^7.0.2",
"css-mqpacker": "^7.0.0",
"del": "^6.0.0",
"eslint": "^7.19.0",
"get-classes-from-html": "^1.0.1",
"gh-pages": "^3.1.0",
"glob-exec": "^0.1.1",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-csso": "^4.0.1",
"gulp-debug": "^4.0.0",
"gulp-imagemin": "^7.1.0",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^9.0.0",
"gulp-pretty-html": "^2.0.10",
"gulp-pug": "^4.0.1",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.0.0",
"gulp-sass": "^4.0.1",
"gulp-sourcemaps": "^3.0.0",
"gulp-svgmin": "^3.0.0",
"gulp-svgstore": "^7.0.1",
"gulp.spritesmith": "^6.11.0",
"husky": "^4.2.3",
"jstransformer-markdown-it": "^2.0.0",
"lint-staged": "^10.0.9",
"merge-stream": "^2.0.0",
"mkdirp": "^1.0.3",
"path": "^0.12.7",
"postcss": "^8.2.5",
"postcss-import": "^14.0.0",
"postcss-inline-svg": "^5.0.0",
"pug-lint": "^2.6.0",
"stylelint": "^13.2.1",
"stylelint-order": "^4.0.0",
"stylelint-selector-bem-pattern": "^2.1.0",
"through2": "^4.0.2",
"vinyl-buffer": "^1.0.1",
"webpack": "^5.21.1",
"webpack-stream": "^6.1.2"
},
"dependencies": {
"autosize": "^4.0.2",
"baron": "^3.0.3",
"choices.js": "^9.0.1",
"closest": "0.0.1",
"svg4everybody": "^2.1.8"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}