-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.08 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
{
"name": "advent-of-code-ts",
"version": "1.0.0",
"description": "Advent of Code TypeScript solutions",
"license": "MIT",
"scripts": {
"cli": "npx ts-node src/common/CliDriver.ts",
"lint": "npx eslint **/*.ts",
"check": "yarn run lint && yarn jest",
"day3Sample": "npx ts-node --files src/2020/day3/index.ts src/2020/day3/sample.txt 1 src/2020/day3/sample.p1.expected.txt",
"scaffoldDay5": "npx ts-node src/common/Scaffolder.ts 2020 5",
"prepare": "husky install"
},
"devDependencies": {
"@types/cli-progress": "^3.11.0",
"@types/inquirer": "8.2.5",
"@types/jest": "^29.2.3",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"cross-env": "^7.0.3",
"eslint": "^8.28.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"dependencies": {
"chalk": "^4.1.2",
"cli-progress": "^3.11.2",
"handlebars": "^4.7.7",
"inquirer": "8.2.4",
"redis-sorted-set": "^2.0.0"
}
}