This repository has been archived by the owner on Jun 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.85 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
{
"name": "holistic-smm.ru.src",
"version": "1.0.0",
"repository": "[email protected]:igorkamyshev/holistic-smm.ru.src.git",
"author": "Igor Kamyshev <[email protected]>",
"license": "MIT",
"scripts": {
"build": "rimraf .cache && rimraf dist && parcel build src/pages/index.pug && node postparcel.js",
"dev": "rimraf .cache && parcel src/pages/index.pug",
"spell": "yaspeller ./src/data",
"pretty": "prettier --write .",
"commit": "git-cz",
"lint:code": "eslint \"./**/*.{js,jsx}\"",
"lint:styles": "stylelint \"./**/*.css\""
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"autoprefixer": "^9.8.0",
"babel-eslint": "^10.1.0",
"commitizen": "^4.1.2",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-node": "^0.3.3",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-import-helpers": "^1.0.2",
"eslint-plugin-unicorn": "^18.0.1",
"husky": "^4.2.5",
"lint-staged": "^10.2.9",
"parcel-bundler": "^1.12.4",
"prettier": "^2.0.5",
"pug": "^3.0.0",
"rimraf": "^3.0.2",
"sharp": "^0.25.3",
"stylelint": "^13.6.0",
"stylelint-config-recess-order": "^2.0.4",
"stylelint-config-recommended": "^3.0.0",
"yaspeller": "^7.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"prettier": {
"trailingComma": "all",
"singleQuote": true
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.{tsx,ts,js,jsx,scss,css,js,json,md}": [
"prettier --write"
]
}
}