-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) 路 1.32 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) 路 1.32 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
42
43
44
45
46
{
"name": "engineering-template",
"version": "1.0.0",
"description": "Production-grade repository template for JS/TS projects",
"private": true,
"packageManager": "pnpm@9.5.0",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"scripts": {
"dev": "echo \"Implement dev server script according to project type (e.g. Next.js, NestJS, Express)\" && exit 0",
"build": "tsc --noEmit",
"start": "echo \"Implement start script according to project type\" && exit 0",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md,yml,yaml}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,md,yml,yaml}\"",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepare": "git config core.hooksPath .githooks || true"
},
"keywords": [
"template",
"github-template",
"typescript",
"ci-cd",
"eslint",
"prettier",
"pnpm"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.6.0",
"@types/node": "^20.14.9",
"eslint": "^9.6.0",
"globals": "^15.8.0",
"prettier": "^3.3.2",
"typescript": "^5.5.2",
"typescript-eslint": "^7.15.0",
"vitest": "^1.6.0"
}
}