-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.37 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
47
48
49
50
51
52
53
54
{
"name": "advent-of-code-2023",
"packageManager": "yarn@3.3.0",
"scripts": {
"test": "jest --silent",
"lint": "eslint .",
"prepare": "husky install",
"download-input": "./bin/download-input.js"
},
"devDependencies": {
"@babel/core": "7.20.5",
"@babel/preset-env": "7.20.2",
"@babel/preset-typescript": "7.18.6",
"@tsconfig/node18": "1.0.1",
"@types/jest": "29.2.3",
"@types/lodash": "4.14.191",
"@types/node": "18.11.9",
"@typescript-eslint/eslint-plugin": "5.45.0",
"@typescript-eslint/parser": "5.45.0",
"babel-jest": "29.3.1",
"commander": "9.4.1",
"eslint": "8.28.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "3.5.2",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "27.1.6",
"eslint-plugin-jest-formatting": "3.1.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.2",
"jest": "29.3.1",
"lint-staged": "13.0.4",
"prettier": "2.8.0",
"typescript": "4.9.3"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"printWidth": 120,
"proseWrap": "always"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
],
"*.md": [
"prettier --write"
]
},
"dependencies": {
"lodash": "4.17.21"
}
}