-
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.3 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.3 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": "node-template-with-typescript",
"version": "0.1.0",
"description": "Boiler template for NodeJS project with TypeScript",
"engines": {
"node": ">=12.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/koheitakumi/node-template-with-typescript.git"
},
"main": "dist/index.js",
"author": "",
"license": "MIT",
"private": false,
"scripts": {
"dev": "ts-node ./src/index.ts",
"dev:watch": "ts-node-dev --respawn src/index.ts",
"clean": "rimraf dist/*",
"tsc": "tsc",
"build": "npm-run-all clean tsc",
"start": "node .",
"lint": "eslint --ext .ts,.js src/",
"format": "prettier --write src/**/*.{ts,js}",
"precommit": "lint-staged"
},
"lint-staged": {
"src/**/*.{ts,js}": [
"eslint --ext .ts,.js",
"prettier --write",
"git add"
]
},
"devDependencies": {
"@types/node": "^14.0.13",
"@typescript-eslint/eslint-plugin": "^3.3.0",
"@typescript-eslint/parser": "^3.3.0",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-node": "^8.10.2",
"ts-node-dev": "^1.0.0-pre.49",
"typescript": "^3.9.5"
}
}