-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.12 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
{
"name": "typescript-node-boilerplate",
"version": "1.0.0",
"description": "Sensible defaults for using Node.js with Typescript",
"scripts": {
"start": "node -r esbuild-register index.ts",
"build": "npm run lint && tsc -p tsconfig.json",
"build:watch": "tsc -w -p tsconfig.json",
"lint": "eslint . --ext .ts --ext .mts",
"prettier": "prettier --config .prettierrc --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/amkoehler/typescript-node-boilerplate.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/amkoehler/typescript-node-boilerplate/issues"
},
"homepage": "https://github.com/amkoehler/typescript-node-boilerplate#readme",
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"esbuild": "^0.15.15",
"esbuild-register": "^3.4.1",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"typescript": "^4.9.3"
}
}