-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1020 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 1020 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
30
31
32
33
34
35
{
"name": "template-typescript-nodejs",
"version": "1.0.0",
"description": "A template for TypeScript Node.js projects",
"repository": {
"type": "git",
"url": "git+https://github.com/ajbeck/template-typescript-nodejs.git"
},
"type": "module",
"engines": {
"node": ">=24"
},
"scripts": {
"format:write": "npx prettier --write .",
"format:check": "npx prettier --check .",
"lint": "npx eslint .",
"package": "node esbuild.mjs",
"run": "node --import tsx src/index.ts",
"test": "node --experimental-test-module-mocks --import tsx --test **/*.test.ts"
},
"devDependencies": {
"@eslint/js": "^9.37.0",
"@types/node": "^24.7.2",
"@typescript-eslint/eslint-plugin": "^8.46.0",
"@typescript-eslint/parser": "^8.46.0",
"esbuild": "^0.25.10",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^16.4.0",
"prettier": "^3.6.2",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.0"
}
}