-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 970 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
{
"name": "advent-of-code-2020",
"version": "1.0.0",
"description": "Advent of Code 2020 by norbitrial",
"main": "index.ts",
"scripts": {
"build": "tsc",
"start": "tsc && node dist/index.js",
"test": "npx jest --watchAll",
"test-ci": "npx jest",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/norbitrial/advent-of-code-2020.git"
},
"author": "Norbert Szabó",
"license": "ISC",
"bugs": {
"url": "https://github.com/norbitrial/advent-of-code-2020/issues"
},
"homepage": "https://github.com/norbitrial/advent-of-code-2020#readme",
"dependencies": {
"@types/node": "^14.14.11",
"colors": "^1.4.0",
"require": "^2.4.20"
},
"devDependencies": {
"@types/jest": "^26.0.18",
"jest": "^26.6.3",
"prettier": "2.2.1",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.2"
}
}