-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.06 KB
/
package.json
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": "typescript-nodejs-template",
"private": true,
"main": "index.js",
"license": "MIT",
"type": "module",
"packageManager": "npm@9.3.1",
"devDependencies": {
"@types/node": "^22.12.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"esbuild": "^0.24.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^10.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"vitest": "^3.0.4"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "run-p test:*",
"test:build": "npm run build -- --noEmit",
"test:vitest": "vitest run",
"test:lint": "eslint --ext .js,.ts --ignore-path .gitignore .",
"test:format": "prettier --ignore-path .prettierignore . --check",
"format": "prettier --ignore-path .prettierignore . --write",
"start": "node --loader ts-node/esm src/app.ts",
"watch": "node --loader ts-node/esm --watch src/app.ts"
},
"dependencies": {
"@tsconfig/node18": "^18.2.4"
}
}