-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.78 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
{
"name": "PipeDrive-Bling-Integration-API",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/JosineyJr/PipeDrive-Bling-Integration-API.git",
"author": "Josiney Mafra",
"license": "MIT",
"scripts": {
"start": "node -r dotenv/config dist/main",
"dev": "ts-node-dev --respawn --transpile-only --clear -r dotenv/config --inspect=0.0.0.0:9229 src/main",
"clean": "rimraf dist",
"build": "yarn clean && tsc -p tsconfig-build.json",
"up": "yarn build && docker-compose up api",
"down": "docker-compose down"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/bcrypt": "^5.0.0",
"@types/bull": "^3.15.5",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.5",
"@types/module-alias": "^2.0.1",
"@types/node": "^16.10.3",
"@types/swagger-ui-express": "^4.1.3",
"@types/validator": "^13.6.3",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.24.2",
"git-cz": "^4.7.6",
"prettier": "^2.4.1",
"ts-node": "^10.2.1",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^3.11.0",
"typescript": "^4.4.3"
},
"dependencies": {
"axios": "^0.22.0",
"bcrypt": "^5.0.1",
"bull": "^3.29.2",
"express": "^4.17.1",
"fast-xml-parser": "^3.20.3",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"mongodb": "^4.1.3",
"pg": "^8.7.1",
"redis": "^3.1.2",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"swagger-ui-express": "^4.1.6",
"typeorm": "^0.2.38",
"validator": "^13.6.0"
},
"_moduleAliases": {
"@": "dist"
}
}