-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.24 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
{
"name": "node-typescript-template",
"version": "2.0.0",
"main": "index.js",
"repository": "git@github.com:MaanuVazquez/node-typescript-template.git",
"author": "Emmanuel Vazquez <maanuvazquez@gmail.com>",
"license": "MIT",
"dependencies": {
"dotenv": "^10.0.0",
"tsconfig-paths": "^3.14.1",
"zod": "^3.21.4"
},
"devDependencies": {
"@maanu-devtools/eslint-config-node": "^0.1.0",
"@maanu-devtools/prettier-config": "^0.1.0",
"@maanu-devtools/tsconfig": "^0.1.2",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.59",
"@tsconfig/node18": "^2.0.1",
"@types/node": "^18.16.14",
"eslint": "^8.41.0",
"eslint-import-resolver-custom-alias": "^1.3.2",
"husky": "^7.0.4",
"nodemon": "^2.0.20",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"scripts": {
"build": "swc ./src -d dist",
"dev": "nodemon --config nodemon.json src/index.ts",
"start": "node -r dotenv/config -r ./tsconfig-paths-bootstrap.js ./dist/index.js",
"lint:eslint": "eslint --max-warnings 0 --ext ts ./src",
"lint:typescript": "tsc --noEmit",
"lint": "run-p lint:*",
"prepare": "husky install"
},
"engines": {
"node": ">=18"
}
}