-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.16 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.16 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
{
"name": "cw-micro",
"version": "0.0.1",
"description": "An express based microservice for proxying to the ConnectWise API.",
"keywords": [
"connectwise",
"connectwise manage",
"connectwise automate",
"rest api",
"PSA"
],
"author": {
"name": "Kevin Grube",
"email": "grube.kevin@gamil.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/k-grube/cw-micro.git"
},
"main": "bin/api.js",
"scripts": {
"start": "npx cross-env NODE_ENV=production node ./app.js",
"dev": "npx cross-env NODE_ENV=development npx nodemon ./app.js"
},
"dependencies": {
"axios": "^0.26.1",
"basic-auth": "^2.0.1",
"body-parser": "^1.19.2",
"connectwise-rest": "^1.0.0",
"dotenv": "^16.0.0",
"errorhandler": "^1.5.1",
"express": "^4.17.3",
"express-validator": "^6.14.0",
"morgan": "^1.10.0",
"promise-retry": "^2.0.1"
},
"engines": {
"node": ">=16"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.15",
"prettier": "^2.6.1"
}
}