-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 753 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 753 Bytes
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
{
"name": "node-cli-skeleton",
"version": "0.1.0",
"type": "module",
"scripts": {
"test": "jest",
"build": "tsc",
"build:watch": "tsc -w"
},
"devDependencies": {
"@types/find-config": "^1.0.4",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.5",
"jest": "^29.7.0",
"prettier": "3.4.2",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3"
},
"dependencies": {
"commander": "^13.0.0",
"dotenv": "^16.4.7",
"find-config": "^1.0.0",
"winston": "^3.17.0"
},
"prettier": {
"trailingComma": "all",
"tabWidth": 4,
"semi": true,
"singleQuote": true
},
"bin": "dist/main.js"
}