-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.09 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
43
44
45
{
"name": "typescript-cli-starter",
"version": "1.0.0",
"description": "",
"main": "./build/src/index.js",
"bin": "./build/src/index.js",
"type": "module",
"scripts": {
"build": "rimraf ./build && npm run compile",
"dev": "nodemon",
"start": "npm run build && node build/src/index.js",
"test": "jest",
"test:dev": "jest --watchAll",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"bundle": "npm run compile && pkg . --out-dir ./exec/"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"ts-dotenv": "^0.9.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^14.18.53",
"@types/yargs": "^17.0.24",
"eslint-plugin-jsdoc": "^46.4.3",
"gts": "^3.1.1",
"jest": "^29.6.1",
"nodemon": "^3.0.1",
"pkg": "^5.8.1",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^4.5.0"
},
"resolutions": {
"@typescript-eslint/typescript-estree": "^5.59.2"
}
}