-
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.24 KB
/
package.json
File metadata and controls
40 lines (40 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
{
"name": "node-base-typescript",
"version": "2.0.0",
"description": "Boilerplate Node.js + TypeScript para APIs com práticas modernas.",
"main": "dist/index.js",
"repository": "git@github.com:juninmd/node-base-typescript.git",
"author": "Antonio Carlos <jr_acn@hotmail.com>",
"license": "MIT",
"scripts": {
"dev": "nodemon ./src/index.ts --watch src --exec ts-node",
"build": "tsc -p tsconfig.build.json",
"start": "node dist/index.js",
"test": "node --test -r ts-node/register tests/**/*.test.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint ./src ./tests",
"lint:fix": "eslint ./src ./tests --fix"
},
"dependencies": {
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-list-routes": "^1.1.3",
"morgan": "^1.10.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.16",
"prettier": "^2.3.2",
"ts-node": "^10.0.0",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.3.5"
}
}