-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.06 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.06 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
{
"name": "otus-learning",
"version": "1.0.0",
"description": "otus JS-Basic learning account",
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "prettier --check . && eslint .",
"lint-fix": "prettier --write . && eslint . --fix",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/otus-learning/otus-learning.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/otus-learning/otus-learning/issues"
},
"homepage": "https://github.com/otus-learning/otus-learning#readme",
"devDependencies": {
"@babel/core": "^7.17.12",
"@babel/preset-env": "^7.17.12",
"@types/jest": "^27.5.1",
"babel-jest": "^28.1.0",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.2.2",
"husky": "^8.0.1",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"lint-staged": "^12.4.1",
"prettier": "2.6.2"
},
"lint-staged": {
"*.js": "eslint --fix",
"*.{js,css,md}": "prettier --write"
}
}