-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 879 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 879 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
{
"name": "node-ts-scripts-template",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=20.0.0",
"yarn": ">=1.22.0"
},
"type": "module",
"main": "dist/index.js",
"scripts": {
"dev": "ts-node src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"lint": "eslint \"src/**/*.{ts,js}\"",
"lint:fix": "eslint \"src/**/*.{ts,js}\" --fix",
"format": "prettier --write \"**/*.{ts,js,json,md}\"",
"check-format": "prettier --check \"**/*.{ts,js,json,md}\""
},
"dependencies": {},
"devDependencies": {
"@types/node": "^22.15.3",
"ts-node": "^10.0.0",
"typescript": "^5.0.0",
"eslint": "^9.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"eslint-config-prettier": "^10.0.0",
"prettier": "^3.0.0"
},
"packageManager": "yarn@1.22.22"
}