-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) 路 1.14 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) 路 1.14 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
{
"name": "nodejs-project-template",
"version": "1.0.0",
"description": "Seed repo for Node.js projects",
"type": "module",
"main": "dist/index.js",
"author": "Adam Yeats <ay@xadamy.xyz>",
"scripts": {
"build": "esbuild src/index.ts --bundle --platform=node --target=node26 --packages=external --format=esm --outdir=dist",
"dev": "tsx watch src/index.ts",
"format": "prettier --write src",
"lint": "eslint src",
"prepare": "husky",
"start": "node dist/index.js",
"test:watch": "vitest",
"test": "vitest run",
"type-check": "tsc --noEmit"
},
"dependencies": {
"dotenv": "^17.4.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^26.1.1",
"@vitest/coverage-v8": "^4.1.10",
"esbuild": "^0.28.1",
"eslint": "^10.7.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-security": "^4.0.1",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"prettier": "^3.9.5",
"tsx": "^4.23.1",
"typescript": "~6.0.3",
"typescript-eslint": "^8.64.0",
"vitest": "^4.1.10"
},
"lint-staged": {
"*.{ts,js}": ["prettier --write", "eslint --fix"]
}
}