-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 807 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 807 Bytes
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
{
"name": "node-ts-template",
"description": "A template for Node.js projects using TypeScript in 2023",
"version": "1.0.0",
"author": "Chris Saganic <chris@saganic.co.uk> (https://github.com/saganic)",
"repository": {
"type": "git",
"url": "https://github.com/Saganic/node-ts-template.git"
},
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "nodemon",
"start": "node ./dist/.",
"lint": "eslint src/**/*.ts",
"format": "eslint src/**/*.ts --fix"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^18.15.3",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.36.0",
"nodemon": "^2.0.21",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
}
}