-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.6 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
{
"name": "otus_homework_lesson07",
"version": "1.0.0",
"description": "Выполнение домашнего задания для лекции \"Код как «проект» - артефакты работы разработчика. Зависимости и утилиты в стеке JavaScript\"",
"main": "index.js",
"scripts": {
"test": "jest --passWithNoTests --coverage",
"lint": "prettier --check . && eslint .",
"lint:fix": "prettier --write . && eslint . --fix",
"build": "webpack --mode=development",
"dev": "webpack serve --open --mode=development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SergeyAkkuratov/OTUS_homework_lesson07.git"
},
"author": "Sergey Akkuratov",
"license": "ISC",
"bugs": {
"url": "https://github.com/SergeyAkkuratov/OTUS_homework_lesson07/issues"
},
"homepage": "https://github.com/SergeyAkkuratov/OTUS_homework_lesson07#readme",
"devDependencies": {
"@babel/preset-env": "^7.24.0",
"css-loader": "^6.10.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-prettier": "^5.1.3",
"html-webpack-plugin": "^5.6.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.2.5",
"style-loader": "^3.3.4",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.3"
},
"lint-staged": {
"*.js": "eslint --fix",
"*.{js,css,md,yml}": "prettier --write"
}
}