-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 995 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
36
37
38
{
"name": "southeastwater-usage-scraper",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"lint": "tsc --noEmit && npx eslint .",
"start": "tsx src/index.ts",
"test": "vitest"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@eslint/js": "^9.15.0",
"@tsconfig/strictest": "^2.0.5",
"@types/eslint__js": "^8.42.3",
"@types/eslint-config-prettier": "^6.11.3",
"@types/node": "^22.9.0",
"@typescript-eslint/parser": "^8.14.0",
"eslint": "9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"typescript-eslint": "^8.14.0",
"vitest": "^2.1.5"
},
"dependencies": {
"@influxdata/influxdb-client": "^1.35.0",
"@playwright/browser-chromium": "^1.48.2",
"@playwright/test": "^1.48.2",
"dotenv": "^16.4.5",
"playwright": "^1.48.2",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"zod": "^3.23.8"
}
}