-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.25 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
{
"name": "currency-conversion-api",
"version": "1.0.0",
"description": "API to convert currencies",
"main": "dist/index.js",
"scripts": {
"prepare": "husky install",
"dev": "NODE_ENV=development nodemon --watch 'src/' --exec 'ts-node -r tsconfig-paths/register ./src/index.ts' -e ts",
"start": "NODE_ENV=production node ./dist/index.js",
"build": "rm -rf ./dist && ttsc -p tsconfig-build.json",
"test": "NODE_ENV=test jest --passWithNoTests --runInBand --detectOpenHandles",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js",
"migration:run": "npm run typeorm -- migration:run",
"migration:revert": "npm run typeorm -- migration:revert",
"migration:create": "npm run typeorm -- migration:create -d ./src/infra/database/migrations -n"
},
"author": "Raphael Batagini",
"license": "ISC",
"devDependencies": {
"@faker-js/faker": "^6.3.1",
"@types/cors": "^2.8.10",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.11",
"@types/jest": "^28.0.7",
"@types/node": "^16.13",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.3.1",
"git-commit-msg-linter": "^3.0.0",
"husky": "^7.0.4",
"jest": "^28.0.7",
"lint-staged": "^11.2.6",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"supertest": "^6.1.3",
"ts-jest": "^28.0.7",
"ts-node": "^10.8.1",
"tsconfig-paths": "^3.9.0",
"ttypescript": "^1.5.12",
"typescript": "^4.2.3",
"typescript-transform-paths": "^2.2.3"
},
"dependencies": {
"@jest-mock/express": "^1.4.1",
"@types/node-fetch": "^2.6.2",
"axios": "^0.26.1",
"cors": "^2.8.5",
"cross-fetch": "^3.1.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"http-status": "^1.5.0",
"joi": "^17.4.0",
"pg": "^8.7.3",
"query-string": "^7.1.1",
"redis": "4.0.6",
"swagger-jsdoc": "^6.2.5",
"swagger-ui-express": "^4.5.0",
"typeorm": "^0.2.45",
"typeorm-naming-strategies": "^2.0.0"
}
}