This repository was archived by the owner on Dec 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.15 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.15 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
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
{
"name": "land-lord",
"version": "1.0.0",
"homepage": "https://github.com/igorkamyshev/land-lord",
"repository": "git@github.com:igorkamyshev/land-lord.git",
"author": "Igor Kamyshev <igor@kamyshev.me>",
"license": "MIT",
"scripts": {
"size": "size-limit",
"pretty": "prettier --write .",
"commit": "git-cz",
"lint:code": "eslint \"./**/*.{js,ts}\"",
"lint:styles": "stylelint \"./**/*.css\""
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@size-limit/file": "^4.9.1",
"@yarnpkg/pnpify": "^2.4.0",
"babel-eslint": "^10.1.0",
"commitizen": "^4.2.2",
"cssnano": "^4.1.10",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.17.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.1.0",
"eslint-import-resolver-node": "^0.3.4",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-import-helpers": "^1.1.0",
"gulp": "^4.0.2",
"gulp-clean": "^0.4.0",
"gulp-concat": "^2.6.1",
"gulp-connect": "^5.7.0",
"gulp-esbuild": "^0.3.14",
"gulp-inject": "^5.0.5",
"gulp-postcss": "^9.0.0",
"gulp-posthtml": "^3.0.5",
"gulp-pug": "^4.0.1",
"husky": "^4.3.7",
"lint-staged": "^10.5.3",
"postcss": "^8.2.2",
"posthtml-inline-assets": "^3.1.0",
"prettier": "^2.2.1",
"size-limit": "^4.9.1",
"stylelint": "^13.8.0",
"stylelint-config-recess-order": "^2.3.0",
"stylelint-config-recommended": "^3.0.0",
"stylelint-order": "^4.1.0",
"yaspeller": "^7.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"size-limit": [
{
"limit": "200 B",
"path": "./build/*.js"
},
{
"limit": "200 B",
"path": "./build/*.css"
}
],
"prettier": {
"trailingComma": "all",
"singleQuote": true
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.{ts,js,css,json,md}": [
"prettier --write"
]
}
}