-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.03 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": "aoc-2023",
"version": "1.0.0",
"description": "simple repo for aoc 2023",
"keywords": [
"aoc",
"adventofcode",
"adventofcode2023"
],
"repository": {
"type": "git",
"url": "https://github.com/cemusta/aoc-2023"
},
"license": "MIT",
"author": "Cem Usta",
"scripts": {
"codecov": "codecov",
"coverage": "jest --collectCoverage --silent",
"dev": "nodemon ./src",
"lint": "eslint .",
"start": "ts-node ./src/index.ts",
"test": "jest --verbose --silent",
"test:changes": "jest -o",
"ncu": "npx npm-check-updates -u"
},
"devDependencies": {
"@types/jest": "^29.5.10",
"@types/node": "^20.10.3",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"codecov": "^3.8.3",
"dotenv": "^16.3.1",
"eslint": "8.55.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.6.0",
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"engines": {
"node": ">=20.0.0"
}
}