-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.67 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
55
56
57
58
59
60
61
{
"name": "advent-of-code",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "node -r ts-node/register --env-file=.env src/index.ts",
"lint": "eslint --ext .js,.ts --quiet .",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"typecheck": "tsc --incremental false --noEmit",
"test": "jest",
"test:watch": "npm test -- --watch",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gustavkj/advent-of-code.git"
},
"author": "Gustav Utterheim <gustav@utterheim.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gustavkj/advent-of-code/issues"
},
"engines": {
"node": "^20.0.0",
"npm": "^10.1.0"
},
"homepage": "https://github.com/gustavkj/advent-of-code#readme",
"dependencies": {
"aoc-loader": "1.4.4",
"readline-sync": "1.4.10"
},
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "20.8.9",
"@types/readline-sync": "1.4.6",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"eslint": "8.57.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "27.9.0",
"husky": "8.0.3",
"jest": "29.7.0",
"lint-staged": "15.0.2",
"prettier": "3.3.3",
"ts-jest": "29.2.5",
"ts-node": "10.9.1",
"typescript": "5.2.2"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml}": "prettier --write"
}
}