-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1022 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-2021",
"version": "0.0.1",
"description": "Implementation of advent of code 2021.",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"watch-ts": "tsc -w",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"test": "jest --forceExit --coverage --verbose",
"serve": "node dist/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Desnoo/advent-of-code-2021.git"
},
"keywords": [
"typescript"
],
"author": "Tino Siegmund",
"license": "MIT",
"bugs": {
"url": "https://github.com/Desnoo/advent-of-code-2021/issues"
},
"homepage": "https://github.com/Desnoo/advent-of-code-2021#readme",
"devDependencies": {
"@types/eslint": "8.2.1",
"@types/jest": "27.0.3",
"@types/node": "16.11.11",
"@typescript-eslint/eslint-plugin": "5.5.0",
"@typescript-eslint/parser": "5.5.0",
"eslint": "8.4.0",
"jest": "27.4.3",
"ts-jest": "27.0.7",
"typescript": "^4.5.2"
}
}