-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.26 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
{
"name": "surf-climate-api",
"version": "1.0.0",
"description": "Typescript Node.js API",
"main": "index.js",
"repository": "https://github.com/Daniel0liver/surf-climate-api.git",
"author": "Daniel Oliveira",
"license": "MIT",
"scripts": {
"build": "tsc",
"start": "yarn build && node dist/src/index.js",
"start:dev": "ts-node-dev --respawn --transpile-only 'src/index.ts' | pino-pretty -c",
"lint": "eslint ./src ./test --ext .ts",
"lint:fix": "eslint ./src ./test --ext .ts --fix",
"style:check": "prettier --check 'src/**/*.ts' 'test/**/*'",
"style:fix": "prettier --write 'src/**/*.ts' 'test/**/*'",
"test": "yarn lint && yarn style:check && yarn test:unit && yarn test:functional",
"test:functional": "jest --projects ./test --runInBand",
"test:unit": "jest"
},
"dependencies": {
"@overnightjs/core": "^1.7.5",
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"config": "^3.3.6",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-openapi-validator": "^3.16.1",
"express-pino-logger": "^6.0.0",
"express-rate-limit": "^5.2.6",
"http-status-codes": "^2.1.4",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"module-alias": "^2.2.2",
"mongoose": "^5.12.7",
"pino": "^6.11.3",
"swagger-ui-express": "^4.1.4"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/config": "^0.0.38",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.9",
"@types/express-pino-logger": "^4.0.2",
"@types/express-rate-limit": "^5.1.2",
"@types/http-status-codes": "^1.2.0",
"@types/jest": "^26.0.15",
"@types/jsonwebtoken": "^8.5.1",
"@types/lodash": "^4.14.170",
"@types/module-alias": "^2.0.0",
"@types/mongoose": "^5.10.5",
"@types/multer": "^1.4.3",
"@types/nock": "^11.1.0",
"@types/node": "^14.14.9",
"@types/pino": "^6.3.8",
"@types/supertest": "^2.0.10",
"@types/swagger-ui-express": "^4.1.2",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"eslint": "^7.14.0",
"jest": "^26.6.3",
"nock": "^13.0.11",
"pino-pretty": "^5.0.2",
"prettier": "^2.2.1",
"supertest": "^6.0.1",
"ts-jest": "^26.4.4",
"ts-node-dev": "^1.0.0",
"typescript": "^4.1.2"
}
}