-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.82 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
{
"name": "api-integration",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"lint": "eslint --ext .js --ignore-path .gitignore .",
"dev": "cp .env.development .env & nodemon -r dotenv/config app.js",
"dev:job": "cp .env.development .env & node -r dotenv/config app-job.js",
"start": "cp .env.production .env & node -r dotenv/config app.js",
"start:job": "cp .env.production .env & node -r dotenv/config app-job.js",
"docker": "npm run docker:build & npm run docker:stop & docker rm pipebling & docker run -dp 3000:3000 --name pipebling api-integration",
"docker:stop": "docker stop pipebling",
"docker:build": "docker build -t api-integration .",
"docker:restart": "npm run docker:stop & docker start pipebling"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rckmath/api-integration.git"
},
"author": "Erick M L Pacheco",
"license": "ISC",
"bugs": {
"url": "https://github.com/rckmath/api-integration/issues"
},
"homepage": "https://github.com/rckmath/api-integration#readme",
"dependencies": {
"axios": "^0.21.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dayjs": "^1.10.6",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"http-status": "^1.5.0",
"mongodb": "^4.1.0",
"mongoose": "^5.13.7",
"morgan": "^1.10.0",
"node-schedule": "^2.0.0",
"xmlbuilder": "^15.1.1"
},
"devDependencies": {
"@types/compression": "^1.7.1",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/morgan": "^1.9.3",
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^1.7.0",
"nodemon": "^2.0.12"
}
}