-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1015 Bytes
/
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
{
"name": "advent-of-code",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"lint": "eslint . --ext .ts",
"script": "ts-node ./src/2021/$npm_config_for_day/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stocaaro/advent-of-code.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/stocaaro/advent-of-code/issues"
},
"homepage": "https://github.com/stocaaro/advent-of-code#readme",
"dependencies": {
"@types/node": "^16.18.4",
"@types/steam": "0.0.29",
"ts-node": "^10.4.0",
"ts-stream": "^3.0.0",
"typescript": "^4.5.2"
},
"devDependencies": {
"@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"
}
}