-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.58 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "node_typescript_api",
"version": "1.0.0",
"description": "TypeScript Node.JS API",
"main": "index.js",
"scripts": {
"start": "node dist/src/index.js | pino-pretty -c",
"build": "node_modules/typescript/bin/tsc",
"start:dev": "ts-node-dev --transpile-only src/index.ts | pino-pretty -c",
"lint": "eslint ./src ./test --ext .ts",
"lint:fix": "eslint ./src ./test --ext .ts --fix",
"test": "dotenv -e env yarn lint && yarn style:check && yarn test:unit && yarn test:functional",
"test:functional": "jest --projects ./test --runInBand",
"test:unit": "jest",
"style:check": "prettier --check src/**/*.ts test/**/*.ts",
"style:fix": "prettier --write src/**/*.ts test/**/*.ts"
},
"engines": {
"node": "16.x"
},
"repository": "https://github.com/JeanFragaJS/nodejs-typescript-api.git",
"keywords": [
"node.js",
"typescript",
"api"
],
"author": "Jean Fraga <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/bcrypt": "^5.0.0",
"@types/config": "^0.0.41",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-pino-logger": "^4.0.3",
"@types/express-rate-limit": "^6.0.0",
"@types/http-status-codes": "^1.2.0",
"@types/jest": "^27.4.0",
"@types/jsonwebtoken": "^8.5.8",
"@types/lodash": "^4.14.178",
"@types/module-alias": "^2.0.1",
"@types/moment": "^2.13.0",
"@types/mongoose": "^5.11.97",
"@types/multer": "^1.4.7",
"@types/nock": "^11.1.0",
"@types/node": "17.0.5",
"@types/pino": "6.3",
"@types/supertest": "^2.0.11",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"eslint": "^8.7.0",
"jest": "^27.4.7",
"nock": "^13.2.2",
"pino-pretty": "^7.5.1",
"prettier": "^2.5.1",
"supertest": "^6.2.2",
"ts-jest": "^27.1.3",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.5"
},
"dependencies": {
"@overnightjs/core": "^1.7.6",
"axios": "^0.25.0",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.1",
"config": "^3.3.7",
"cors": "^2.8.5",
"dotenv-cli": "^5.0.0",
"express": "^4.17.2",
"express-openapi-validator": "^4.13.5",
"express-pino-logger": "^7.0.0",
"express-rate-limit": "^6.3.0",
"http-status-codes": "^2.2.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"module-alias": "^2.2.2",
"moment": "^2.29.1",
"mongoose": "^6.1.8",
"pino": "^7.8.0",
"swagger-ui-express": "^4.3.0"
},
"resolutions": {}
}