-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 863 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": "@xiel/advent-of-code",
"private": true,
"workspaces": [
"src/*"
],
"version": "1.0.0",
"main": "index.js",
"author": "Felix Leupold",
"license": "MIT",
"scripts": {
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"type-check": "tsc --noEmit"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"@babel/preset-typescript": "7.26.0",
"@types/jest": "29.5.14",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"babel-jest": "29.7.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"jest": "28.1.3",
"prettier": "3.3.3",
"ts-node": "10.9.2",
"typescript": "4.7.4"
},
"packageManager": "[email protected]",
"dependencies": {
"@types/node": "20.16.2",
"canvas": "2.11.2"
}
}