generated from scottluskcis/ts-node-project-setup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.18 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
37
38
39
40
41
42
{
"name": "copilot-usage-metrics",
"version": "1.0.0",
"description": "Utility for capturing usage metrics",
"exports": "./src/index.js",
"engines": {
"node": ">=18"
},
"type": "module",
"scripts": {
"build": "tsc",
"start": "tsc && node --enable-source-maps --experimental-specifier-resolution=node --no-warnings --loader ts-node/esm dist/index.js",
"dev": "nodemon --enable-source-maps --experimental-specifier-resolution=node --no-warnings --loader ts-node/esm src/index.ts",
"lint": "eslint ./src/**/*.ts",
"test": "jest",
"test:watch": "jest --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.2",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"dependencies": {
"@octokit/openapi-types": "^22.2.0",
"date-fns": "^4.1.0",
"dotenv": "^16.4.7",
"fast-csv": "^5.0.2",
"octokit": "^4.0.2",
"tslog": "^4.9.3"
}
}