This repository was archived by the owner on Jul 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.5 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.5 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
44
45
46
47
48
49
50
{
"name": "template-node-ts",
"version": "0.1.6",
"description": "Project Template for creating Node.js apps with TypeScript",
"author": "contact.robin.hartmann@gmail.com",
"license": "MIT",
"main": "dist/lib/lib.js",
"bin": {
"print-pretty-hello-world": "dist/bin/bin.js"
},
"engines": {
"node": ">=10.18.1"
},
"repository": "github:robin-hartmann/template-node-ts",
"dependencies": {
"figlet": "^1.3.0"
},
"devDependencies": {
"@types/figlet": "^1.2.0",
"@types/node": "^13.7.7",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.22.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^7.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-eslint-comments": "^3.1.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-unicorn": "^16.1.1",
"prettier": "^2.0.2",
"shx": "^0.3.2",
"ts-node": "^8.6.2",
"typescript": "^3.8.3"
},
"scripts": {
"prepublishOnly": "npm run build",
"prebuild": "npm run lint",
"build": "npm run build-only",
"prebuild-only": "npm run clean",
"build-only": "tsc -p tsconfig.json",
"clean": "shx rm -rf dist/",
"lint": "eslint . --ext .ts",
"start": "npm run start:ts",
"start:ts": "ts-node src/bin/bin.ts",
"start:js": "node dist/bin/bin.js",
"test": "echo \"Error: no test specified\" && exit 1"
}
}