-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.29 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.29 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
34
35
36
37
38
39
40
41
42
43
{
"name": "ts-cli-template",
"version": "1.0.0",
"description": "A starter template for node CLI tools",
"main": "./dist/index.js",
"bin": {
"ts-cli-template": "./dist/index.js"
},
"license": "MIT",
"private": false,
"scripts": {
"watch": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"start": "ts-node src/index.ts",
"build": "tsc -p .",
"lint": "tsc --noEmit && eslint . --ext .js,.jsx,.ts,.tsx",
"pretty": "prettier --write '**/*.{js,ts}'"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "2.26.0",
"@typescript-eslint/parser": "2.26.0",
"eslint": "6.8.0",
"eslint-config-airbnb-typescript": "7.2.0",
"eslint-config-prettier": "6.10.1",
"eslint-plugin-import": "2.20.2",
"husky": "4.2.3",
"nodemon": "2.0.2",
"prettier": "2.0.4",
"pretty-quick": "2.0.1",
"ts-node": "8.8.2",
"typescript": "3.8.3"
},
"dependencies": {
"@types/commander": "2.12.2",
"@types/node": "13.11.0",
"commander": "5.0.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"pre-push": "pretty-quick --staged && yarn lint"
}
}
}