-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.69 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
47
48
49
50
51
52
53
54
{
"name": "my-node-project-template",
"version": "1.0.0",
"description": "Node.js + TypeScript project template",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/ART1KZ/my-node-project-template"
},
"license": "ISC",
"author": "",
"type": "module",
"main": "dist/index.js",
"engines": {
"node": ">=24.0.0",
"npm": ">=11.0.0"
},
"packageManager": "npm@11.6.1",
"scripts": {
"setup": "npm ci && npm run env:sync && npm run check",
"setup:latest": "npm run deps:update && npm run env:sync",
"dev": "tsx watch -r dotenv/config src/index.ts",
"build": "tsc -p tsconfig.json",
"start": "node -r dotenv/config dist/index.js",
"env:sync": "node scripts/setup.mjs",
"typecheck": "tsc --noEmit",
"test": "node --test",
"check": "npm run format:check && npm run lint && npm run typecheck && npm run build",
"deps:patch": "npm update && npm run check && npm test",
"deps:update": "npx -y npm-check-updates@latest -u && npm install && npm run check && npm test",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint . --fix --max-warnings 0",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"devDependencies": {
"@eslint/js": "^9.39.3",
"@types/node": "^25.3.0",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"eslint": "^9.39.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-n": "^17.24.0",
"globals": "^17.3.0",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0"
},
"dependencies": {
"dotenv": "^17.3.1",
"zod": "^4.3.6"
}
}