-
Notifications
You must be signed in to change notification settings - Fork 173
/
package.json
86 lines (86 loc) · 2.57 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
85
86
{
"name": "typescript-api",
"version": "1.0.0",
"description": "Complete API built with Node.js and Typescript",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "node dist/src/index.js",
"start:local": "dotenv -e .env -- ts-node-dev --transpile-only src/index.ts | pino-pretty -c",
"test": "yarn lint && yarn style:check && yarn test:unit && yarn test:functional",
"lint": "eslint ./src ./test --ext .ts",
"lint:fix": "eslint ./src ./test --ext .ts --fix",
"test:functional": "dotenv -e .env -- jest --projects ./test --runInBand",
"test:unit": "dotenv -e .env -- jest",
"style:check": "prettier --check src/**/*.ts test/**/*.ts",
"style:fix": "prettier --write src/**/*.ts test/**/*.ts"
},
"engines": {
"node": "16"
},
"repository": {
"type": "git",
"url": "git+https://github.com/waldemarnt/node-typescript-api.git"
},
"keywords": [
"node",
"nodejs",
"typescript",
"api"
],
"author": "Waldemar Neto",
"license": "MIT",
"bugs": {
"url": "https://github.com/waldemarnt/node-typescript-api/issues"
},
"homepage": "https://github.com/waldemarnt/node-typescript-api#readme",
"dependencies": {
"@overnightjs/core": "^1.7.6",
"@types/express": "^4.17.13",
"axios": "^0.24.0",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.1",
"config": "^3.3.6",
"cors": "^2.8.5",
"express": "^4.17.2",
"express-openapi-validator": "^4.13.5",
"express-pino-logger": "^7.0.0",
"express-rate-limit": "^6.0.1",
"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.4",
"node-cache": "^5.1.2",
"pino": "^7.6.2",
"swagger-ui-express": "^4.3.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/config": "^0.0.40",
"@types/cors": "^2.8.12",
"@types/express-pino-logger": "^4.0.3",
"@types/jest": "^27.0.3",
"@types/jsonwebtoken": "^8.5.6",
"@types/lodash": "^4.14.178",
"@types/module-alias": "^2.0.1",
"@types/node": "16",
"@types/supertest": "^2.0.11",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"dotenv-cli": "^4.1.1",
"eslint": "^8.5.0",
"is-typedarray": "^1.0.0",
"jest": "^27.4.5",
"nock": "^13.2.1",
"pino-pretty": "^7.3.0",
"prettier": "^2.5.1",
"supertest": "^6.1.6",
"testcontainers": "^8.12.0",
"ts-jest": "^27.1.2",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.4"
}
}