-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.44 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
{
"name": "yoda-pay-rest-api",
"version": "1.0.0",
"description": "REST API for fintech Yoda Pay",
"main": "built/src/main/server.js",
"scripts": {
"build": "tsc",
"start": "node ./built/src/main/server.js",
"dev": "ts-node-dev --respawn --transpile-only src/main/server.ts",
"test": "jest -u --noStackTrace --runInBand --detectOpenHandles --forceExit",
"type-check": "tsc --pretty --noEmit",
"lint": "eslint . --ext ts --ext js --fix",
"format": "prettier --write **/*.{js,ts}",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JoseMarshall/yoda-pay-rest-api.git"
},
"author": "Josemar",
"license": "ISC",
"bugs": {
"url": "https://github.com/JoseMarshall/yoda-pay-rest-api/issues"
},
"homepage": "https://github.com/JoseMarshall/yoda-pay-rest-api#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.6.0",
"express": "^4.17.1",
"express-mongo-sanitize": "^2.1.0",
"joi": "^17.4.1",
"mongoose": "^5.13.7",
"morgan": "^1.10.0",
"pino": "^6.12.0",
"pino-pretty": "^5.1.2",
"swagger-ui-express": "^4.1.6",
"uuid": "^8.3.2"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@shelf/jest-mongodb": "^2.0.3",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/faker": "^5.5.1",
"@types/jest": "^26.0.20",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.3",
"@types/pino": "^6.3.9",
"@types/supertest": "^2.0.11",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "7.31.0",
"eslint-config-airbnb": "^19.0.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-flowtype": "^5.8.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.27.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"faker": "^5.5.3",
"husky": "^7.0.1",
"jest": "26.6.3",
"lint-staged": "^11.1.0",
"mongodb-memory-server": "^7.4.0",
"prettier": "^2.3.2",
"prettier-eslint": "^12.0.0",
"supertest": "^6.1.6",
"ts-jest": "^26.5.3",
"ts-node": "^10.1.0",
"ts-node-dev": "^1.1.8",
"tslib": "^2.3.1",
"typescript": "4.4.4"
}
}