-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 869 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
{
"name": "advent-of-code-boilerplate",
"version": "1.0.0",
"description": "Boilerplate workspace for advent of code puzzle",
"main": "index.ts",
"scripts": {
"dev": "nodemon",
"build": "rm -rf dist && tsc",
"test": "jest",
"start": "node dist/index.js",
"init-day": "ts-node src/scripts/initNewDay/initNewDay.ts",
"lint": "eslint src",
"lint:fix": "eslint --fix src"
},
"author": "Francesco Maida",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.3.0",
"jest": "^27.4.2",
"nodemon": "^2.0.15",
"prettier": "^2.5.0",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
}
}