forked from edge33/AdventOfCode-typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 813 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
{
"name": "advent-of-code-boilerplate",
"version": "1.0.0",
"description": "Boilerplate workspace for advent of code puzzle",
"main": "index.ts",
"scripts": {
"dev": "bun src/index.ts",
"build": "rm -rf dist && tsc",
"test": "vitest",
"start": "node dist/index.js",
"init-day": "bun src/scripts/initNewDay/initNewDay.ts",
"lint": "eslint src",
"lint:fix": "eslint --fix src"
},
"author": "Francesco Maida",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.10.1",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.1.0",
"typescript": "^5.3.2",
"vitest": "^0.34.6"
},
"dependencies": {
"bun": "^1.1.38"
}
}