-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.61 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
{
"repository": "kh2fm-rando-reports",
"name": "kh2maps",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint:js": "eslint . --ext .js,.jsx --ignore-path .gitignore",
"lint:js:fix": "eslint . --ext .js,.jsx --ignore-path .gitignore --fix",
"lint:style": "stylelint **/*.scss --ignore-path .gitignore",
"lint:style:fix": "stylelint **/*.scss --ignore-path .gitignore --fix"
},
"lint-staged": {
"*.{js,jsx}": "eslint --ignore-path .gitignore",
"*.scss": "stylelint --ignore-path .gitignore"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"keywords": [],
"author": "Colton Crowe",
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "^0.11.0",
"@borisschapira/eleventy-plugin-better-slug": "^1.0.1",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"acorn": "^8.0.4",
"commitlint": "^11.0.0",
"eleventy-plugin-sass": "^1.1.1",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.2.1",
"husky": "^4.3.7",
"lint-staged": "^10.5.3",
"markdown-it": "^12.0.4",
"markdown-it-attrs": "^4.0.0",
"prettier": "^2.2.1",
"stylelint": "^13.8.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^20.0.0"
},
"dependencies": {}
}