-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 957 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
32
33
34
35
{
"name": "aoc-watcher",
"version": "0.0.2",
"description": "A puzzle input browser scraper and solution watcher",
"main": "./src/index.ts",
"scripts": {
"prestart": "npx tsc",
"start": "node out/index.js",
"test": "npx jest ./src",
"lint": "npx tsc && npx eslint ./src/",
"build": "npx tsc"
},
"author": "Martin Nilsson",
"license": "MIT",
"dependencies": {
"chrome-remote-interface": "^0.33.0",
"dotenv": "^16.3.1",
"moment": "^2.29.4",
"mustache": "^4.2.0",
"winston": "^3.11.0",
"@xmldom/xmldom": "^0.8.10"
},
"devDependencies": {
"@types/chrome-remote-interface": "^0.31.13",
"@types/jest": "^29.5.9",
"@types/mustache": "^4.2.5",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"devtools-protocol": "^0.0.1227218",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
}
}