-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.35 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.35 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
{
"name": "node-api-template",
"version": "2.1.2",
"description": "Template made in Typescript with Express and structured with an architecture based on clean and DDD.",
"repository": "https://github.com/Lissone/node-api-template",
"author": "Leonardo Dias Lissone Santomero <leonardo.lissonez@gmail.com>",
"main": "src/external/server.ts",
"license": "MIT",
"private": true,
"scripts": {
"prepare": "husky",
"build": "tsc --project tsconfig.json && tscpaths -p tsconfig.json -s ./src -o ./dist",
"start": "node -r ts-node/register/transpile-only -r tsconfig-paths/register dist/external/server.js",
"start:dev": "ts-node-dev -r tsconfig-paths/register --respawn --transpile-only --ignore-watch node_modules ."
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"pg": "^8.12.0",
"reflect-metadata": "^0.2.2",
"typeorm": "^0.3.20",
"yup": "^1.4.0"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@lissone/eslint-config": "^2.2.4",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^22.5.2",
"@types/yup": "^0.32.0",
"eslint": "^8.57.0",
"husky": "^9.1.6",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.5.4"
}
}