-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 851 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-js-2023",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "vitest ./src/tests/$N.spec.ts",
"lint": "eslint . --fix --ext .ts",
"create": "sh ./src/bash/create-new-challenge.sh",
"delete": "sh ./src/bash/delete-challenge.sh",
"debug": "ts-node --esm ./src/challenges/17.ts",
"test-all": "vitest run"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"ts-node": "^10.9.1",
"vitest": "^1.0.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.4.0",
"eslint": "^8.55.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.3",
"typescript": "^5.3.2"
}
}