forked from DeNepo/solution-write-ups
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.44 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
{
"name": "solution-write-ups",
"version": "1.0.0",
"description": "when you learn how to understand other people's (maybe) clever code",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/HackYourFutureBelgium/solution-write-ups.git"
},
"scripts": {
"format": "prettier --write ./",
"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 ./ ",
"spell-check": "cspell './**'",
"test": "node --experimental-vm-modules node_modules/.bin/jest --passWithNoTests "
},
"author": "HackYourFutureBelgium",
"license": "MIT",
"bugs": {
"url": "https://github.com/HackYourFutureBelgium/solution-write-ups/issues"
},
"homepage": "https://github.com/HackYourFutureBelgium/solution-write-ups#readme",
"devDependencies": {
"@ls-lint/ls-lint": "^1.10.0",
"cspell": "^5.6.6",
"eslint": "^7.31.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-folders": "^1.0.3",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^32.3.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-sonarjs": "^0.9.1",
"jest": "^26.6.3",
"markdownlint-cli": "^0.28.1",
"prettier": "^2.2.1"
}
}