-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 935 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
39
40
41
42
43
44
45
{
"name": "gournal",
"version": "0.2.0",
"bin": {
"gournal": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "ts-node src/cli.ts",
"test": "jest"
},
"keywords": [
"journal",
"cli",
"nodejs",
"typescript",
"standup",
"tasklog"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/aelshinawy/gournal"
},
"description": "",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^13.1.0",
"date-fns": "^4.1.0",
"fs-extra": "^11.3.0",
"inquirer": "^12.3.3"
},
"devDependencies": {
"@swc/jest": "^0.2.37",
"@types/chalk": "^0.4.31",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.14",
"@types/node": "^22.12.0",
"jest": "^29.7.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
}
}