-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.01 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
{
"name": "node-typescript-cli",
"version": "1.0.0",
"description": "A base for creating Node tools",
"main": "./lib/index.js",
"repository": "https://github.com/net-runner/node-typescript-cli",
"author": "net-runner <slazynski.j@gmail.com>",
"license": "MIT",
"dependencies": {
"chalk": "^5.2.0",
"commander": "^9.4.1",
"inquirer": "^9.1.4",
"log-symbols": "^5.1.0",
"nanospinner": "^1.1.0",
"path": "^0.12.7",
"replace-in-file": "^6.3.5"
},
"scripts": {
"start": "node .",
"build": "webpack",
"run": "yarn build && yarn start"
},
"bin": "./lib/index.js",
"devDependencies": {
"@types/inquirer": "^9.0.3",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"eslint": "^8.31.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.1",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
}
}