-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.1 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.1 KB
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
{
"name": "adventofcode",
"version": "1.0.0",
"main": "index.ts",
"scripts": {
"start": "ts-node index.ts",
"day13": "ts-node day13/play.ts",
"day15": "ts-node day15/play.ts",
"lint": "eslint --fix --ext .ts .",
"lint-check": "eslint --ext .ts ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/joshgaber/adventofcode2019.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/joshgaber/adventofcode2019/issues"
},
"homepage": "https://github.com/joshgaber/adventofcode2019#readme",
"dependencies": {
"@types/mathjs": "^6.0.11",
"@types/node": "^14.14.37",
"@types/terminal-kit": "^1.28.2",
"blessed": "^0.1.81",
"mathjs": "^9.3.0",
"terminal-kit": "^1.32.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"description": "",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1"
}
}