-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 882 Bytes
/
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
{
"name": "yandex-cup",
"version": "1.0.0",
"description": "",
"scripts": {
"test": "jest --passWithNoTests --verbose --silent=false",
"lint": "eslint --fix .",
"prettier": "prettier --write .",
"prepare": "husky install"
},
"author": "Alexander Rzhanitsyn",
"jest": {
"testEnvironment": "node",
"transform": {}
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.1",
"husky": "^7.0.1",
"jest": "^27.0.6",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2"
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"eslint --cache --fix",
"git add"
],
"*.{html,css,less,ejs,md}": [
"prettier --write",
"git add"
]
}
}