forked from DeNepo/practice-code-review
-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
39 lines (39 loc) · 1.28 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
{
"name": "practice-code-review",
"version": "1.0.0",
"scripts": {
"format": "prettier --write ./",
"format:check": "prettier --check ./",
"lint:js": "eslint --max-warnings=0 --ext=.js --format=codeframe",
"lint:ls": "ls-lint",
"lint:md": "markdownlint --ignore node_modules --ignore docs --config ./.markdownlint.jsonc --fix ./ ",
"test": "jest --passWithNoTests --coverage ",
"spell-check": "cspell './**'"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/hackyourfuturebelgium/practice-code-review.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/hackyourfuturebelgium/practice-code-review/issues"
},
"homepage": "https://github.com/hackyourfuturebelgium/practice-code-review",
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.22.5",
"@ls-lint/ls-lint": "^2.0.1",
"cspell": "^6.31.2",
"eslint": "^8.45.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-formatter-codeframe": "^7.32.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^46.4.4",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-sonarjs": "^0.19.0",
"jest": "^29.6.1",
"markdownlint-cli": "^0.35.0",
"prettier": "^3.0.0"
}
}