-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.16 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
{
"name": "pipedrive-bling",
"version": "1.0.0",
"author": "Ian Mateus",
"description": "An integration system between Pipedrive and Bling",
"main": "src/index.js",
"license": "MIT",
"scripts": {
"start": "node -r sucrase/register src/server.js",
"dev:server": "nodemon src/server.js",
"lint": "eslint src --ext js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ianmateusES/pipedrive-bling.git"
},
"bugs": {
"url": "https://github.com/ianmateusES/pipedrive-bling/issues"
},
"dependencies": {
"axios": "^0.21.1",
"celebrate": "^13.0.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"js2xmlparser": "^4.0.1",
"moment-timezone": "^0.5.33",
"mongoose": "5.11.15",
"node-schedule": "^2.0.0",
"winston": "^3.3.3",
"yup": "^0.32.9"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"sucrase": "^3.17.1"
}
}