-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
88 lines (88 loc) · 1.92 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
{
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@hint/configuration-web-recommended": "^8.2.1",
"@jackfranklin/test-data-bot": "^1.3.0",
"@testing-library/cypress": "^6.0.0",
"babel-eslint": "^10.1.0",
"cypress": "^4.12.1",
"eslint-config-kentcdodds": "^14.14.2",
"eslint-plugin-cypress": "^2.11.1",
"eslint-plugin-prettier": "^3.1.2",
"hint": "^6.1.3",
"husky": "^4.0.10",
"lint-staged": ">=8",
"postcss-html": "^0.36.0",
"postcss-markdown": "^0.36.0",
"postcss-syntax": "^0.36.2",
"prettier": "^1.19.1",
"prettier-eslint-cli": "^5.0.0",
"stylefmt": "^6.0.3",
"stylelint": "^13.0.0",
"stylelint-config-prettier": "^8.0.1",
"stylelint-prettier": "^1.1.2"
},
"scripts": {
"husky:commitmsg": "commitlint -E HUSKY_GIT_PARAMS",
"husky:precommit": "yarn run prettier",
"test:e2e:run": "cypress run",
"test:e2e:dev": "cypress open"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"type-enum": [
2,
"always",
[
"chore",
"ci",
"dev",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"style",
"test",
"build"
]
]
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"prettier": {},
"lint-staged": {
"*.{js,js.es6,.es6,html,json}": [
"prettier-eslint --write",
"git add"
],
"*.{md}": [
"prettier --write",
"git add"
],
"*.scss": [
"stylefmt",
"stylelint --syntax scss",
"git add"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"dependencies": {
"node-fetch": "^2.6.1"
}
}