-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.15 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
{
"name": "advent-of-code",
"version": "1.0.0",
"description": "Advent of Code solutions",
"scripts": {
"eslint": "eslint '**/*.ts'",
"eslint:fix": "eslint --fix '**/*.ts'",
"prettier": "prettier --check '**/*.ts'",
"prettier:fix": "prettier --write '**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alysivji/advent-of-code.git"
},
"keywords": [
"advent-of-code",
"aoc"
],
"author": "Aly Sivji",
"license": "MIT",
"bugs": {
"url": "https://github.com/alysivji/advent-of-code/issues"
},
"homepage": "https://github.com/alysivji/advent-of-code#readme",
"devDependencies": {
"@types/heap": "^0.2.28",
"@types/lodash": "^4.14.177",
"@types/node": "^16.11.11",
"@typescript-eslint/eslint-plugin": "5.5.0",
"@typescript-eslint/parser": "5.5.0",
"eslint": "8.3.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"prettier": "2.5.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"dependencies": {
"heap": "^0.2.7",
"immutable": "^4.0.0",
"lodash": "^4.17.21",
"typescript-collections": "^1.3.3"
}
}