-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.59 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.59 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
43
44
45
46
47
48
49
50
51
52
53
{
"name": "test-nodejs",
"version": "0.0.1",
"description": "",
"scripts": {
"build": "tsc",
"docker:logs": "docker-compose logs -f",
"docker:start": "docker-compose up --build",
"lint": "eslint --ext .ts",
"lint:fix": "yarn lint --fix",
"prebuild": "rm -rf dist",
"start": "ts-node-dev --ignore-watch node_modules --inspect=3333 --respawn --transpile-only ./src/main/Server.ts",
"start:production": "node dist/src/main/Server.js",
"test": "jest --runInBand --coverage",
"test:watch": "yarn test --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ealbuquerque/codejs-clean-code.git"
},
"keywords": [],
"author": "Ezequias Albuquerque <ezequias.albuquerque@outlook.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/ealbuquerque/codejs-clean-code/issues"
},
"homepage": "https://github.com/ealbuquerque/codejs-clean-code#readme",
"dependencies": {
"body-parser": "1.19.0",
"express": "4.17.1",
"global": "4.4.0",
"http-status-codes": "2.1.4",
"joi": "17.4.1",
"morgan": "1.10.0",
"swagger-jsdoc": "6.1.0",
"swagger-ui-express": "4.1.6",
"winston": "3.3.3"
},
"devDependencies": {
"@types/express": "4.17.13",
"@types/jest": "26.0.24",
"@types/morgan": "1.9.3",
"@types/swagger-jsdoc": "6.0.1",
"@types/swagger-ui-express": "4.1.3",
"@typescript-eslint/eslint-plugin": "4.28.3",
"@typescript-eslint/parser": "4.28.3",
"eslint": "7.31.0",
"jest": "27.0.6",
"ts-jest": "27.0.3",
"ts-node-dev": "1.1.8",
"typescript": "4.3.5"
}
}