-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) 路 2.26 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) 路 2.26 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "node-api-course",
"version": "1.0.0",
"main": "index.js",
"author": "hugosrc <hugo.uibai54@gmail.com>",
"license": "Apache-2.0",
"scripts": {
"build": "tsc",
"prestart": "rm -rf ./dist",
"start": "yarn build && node dist/src/index.js",
"dev": "tsnd --transpile-only --respawn --no-notify src/index.ts | pino-pretty -c",
"lint": "eslint ./src ./__tests__ --ext .ts",
"lint:fix": "eslint ./src ./__tests__ --ext .ts --fix",
"style:check": "prettier --check 'src/**/*.ts' '__tests__/**/*.ts'",
"style:fix": "prettier --write 'src/**/*.ts' '__tests__/**/*.ts'",
"test": "yarn lint && yarn style:check && yarn test:unit && yarn test:functional",
"test:unit": "jest",
"test:functional": "jest --projects ./__tests__ --runInBand"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/bcrypt": "^3.0.0",
"@types/cors": "^2.8.10",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/express-pino-logger": "^4.0.2",
"@types/express-rate-limit": "^5.1.3",
"@types/http-status-codes": "^1.2.0",
"@types/jest": "^26.0.9",
"@types/jsonwebtoken": "^8.5.0",
"@types/lodash": "^4.14.168",
"@types/module-alias": "^2.0.0",
"@types/mongoose": "^5.7.36",
"@types/nock": "^11.1.0",
"@types/node": "^14.0.27",
"@types/pino": "^6.3.3",
"@types/supertest": "^2.0.10",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"eslint": "^7.6.0",
"jest": "^26.2.2",
"nock": "^13.0.4",
"pino-pretty": "^4.3.0",
"prettier": "^2.0.5",
"supertest": "^4.0.2",
"ts-jest": "^26.1.4",
"ts-node-dev": "^1.0.0-pre.56",
"typescript": "^3.9.7"
},
"dependencies": {
"@overnightjs/core": "^1.7.4",
"axios": "^0.19.2",
"bcrypt": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.1",
"express-openapi-validator": "^4.13.0",
"express-pino-logger": "^5.0.0",
"express-rate-limit": "^5.3.0",
"http-status-codes": "^2.1.4",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.20",
"module-alias": "^2.2.2",
"moment": "^2.29.1",
"mongoose": "^5.9.28",
"pino": "^6.7.0",
"swagger-ui-express": "^4.1.6"
}
}