-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.01 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.01 KB
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
{
"name": "clockify-timesheet-generator",
"version": "1.0.0",
"description": "Clockify APIを使用した勤務表自動生成ツール",
"main": "src/index.ts",
"scripts": {
"start": "ts-node src/index.ts",
"generate": "ts-node src/index.ts",
"build": "tsc",
"lint": "biome lint .",
"format": "biome format --write .",
"check": "biome check .",
"test": "ts-node src/tests/timesheetService.test.ts",
"test:tz": "TZ=UTC pnpm test && TZ=Asia/Tokyo pnpm test && TZ=America/New_York pnpm test",
"list-workspaces": "ts-node src/tools/listWorkspaces.ts",
"get-user-info": "ts-node src/tools/getUserInfo.ts"
},
"dependencies": {
"axios": "^1.10.0",
"dotenv": "^16.4.5",
"exceljs": "^4.4.0",
"googleapis": "^166.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^20.19.1",
"ts-node": "^10.9.0",
"typescript": "^5.0.0"
},
"keywords": ["clockify", "timesheet", "excel", "api"],
"author": "Gild-shogi",
"license": "MIT"
}