-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.09 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",
"version": "1.0.0",
"description": "My answers to the Advent of Code competition.",
"main": "index.ts",
"scripts": {
"dev": "ts-node-dev src/main.ts",
"dev:watch": "ts-node-dev --respawn src/main.ts",
"lint": "eslint \"src/**/*.ts\""
},
"repository": "git@github.com:JuJuTheWulfPup/advent-of-code.git",
"author": "JuJuTheWulfPup",
"license": "MIT",
"private": false,
"devDependencies": {
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"eslint": "^8.13.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.1.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-spellcheck": "^0.0.19",
"eslint-plugin-unused-imports": "^2.0.0"
},
"dependencies": {
"@nestjs/common": "^10.2.10",
"@nestjs/core": "^10.3.0",
"reflect-metadata": "^0.2.1",
"rxjs": "^7.8.1",
"typescript": "<5.2.0"
}
}