-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 938 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 938 Bytes
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": "Will's advent of code answers",
"main": "index.ts",
"scripts": {
"start": "nodemon",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix",
"test": "jest --watch"
},
"author": "Will Moritz",
"license": "ISC",
"dependencies": {
"@types/fs-extra": "^9.0.5",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0",
"eslint": "^7.16.0",
"fs-extra": "^9.0.1",
"nodemon": "^2.0.6",
"npm": "^6.14.10",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0"
},
"devDependencies": {
"@types/jest": "^26.0.19",
"@types/node": "^14.14.16",
"jest": "^26.6.3",
"jest-get-type": "^26.3.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
}
}