-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.02 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
{
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-typescript": "^7.22.5",
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"babel-jest": "^29.6.2",
"eslint": "^8.55.0",
"jest": "^29.6.1",
"prettier": "^3.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"name": "advent-of-code-2023",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "ts-node",
"format": "prettier -w .",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nicole-lancaster/advent-of-code-2023.git"
},
"keywords": [
"advent-of-code",
"advent-of-code-2023"
],
"author": "Nicole Lancaster",
"license": "ISC",
"bugs": {
"url": "https://github.com/nicole-lancaster/advent-of-code-2023/issues"
},
"homepage": "https://github.com/nicole-lancaster/advent-of-code-2023#readme",
"description": ""
}