-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 758 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 758 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-typescript-starter",
"version": "1.0.0",
"description": "An opinionated starter template for TypeScript/Node projects",
"scripts": {
"test": "tsx --test test/*.test.ts",
"build": "tsc",
"start": "tsx src/main.ts"
},
"author": "Dylan Sprague",
"license": "MIT",
"repository": "github:DylanSp/typescript-node-starter",
"type": "module",
"exports": "./dist/main.js",
"engines": {
"node": ">=20"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@types/node": "^20.17.30",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.5",
"prettier": "^3.5.3",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"typescript-eslint": "^8.29.0"
}
}