-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.61 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
{
"name": "software-checkout",
"version": "2.4.0",
"description": "Use LibCal to assign software licenses in Adobe and Jamf",
"main": "app.js",
"scripts": {
"test": "jest --watch",
"start": "node app",
"server": "node app --listen --name=software-checkout >> logs/app.log 2>&1 &",
"dev": "nodemon app",
"web": "node www/index --name=software-checkout-webconsole >> logs/web.log 2>&1 &",
"webdev": "nodemon www/index --name=software-checkout-webconsole >> logs/web.log 2>&1 &"
},
"author": "Ken Irwin",
"license": "MIT",
"dependencies": {
"@json2csv/node": "^7.0.6",
"async": "^3.2.0",
"axios": "^0.28.1",
"chrono-node": "^2.7.6",
"colors": "^1.4.0",
"crypto": "^1.0.1",
"dayjs": "^1.10.4",
"debug": "^4.3.1",
"ejs": "^3.1.10",
"express": "^4.19.2",
"express-session": "^1.18.0",
"fast-xml-parser": "^4.2.7",
"https": "^1.0.0",
"inquirer": "^8.2.1",
"jsdom": "^24.1.0",
"json2csv": "^6.0.0-alpha.2",
"jsonwebtoken": "^9.0.1",
"lodash": "^4.17.21",
"mongoose": "^5.12.8",
"node-fetch": "^2.7.0",
"node-jq": "^6.0.1",
"object-to-xml": "^2.0.0",
"passport": "^0.7.0",
"passport-google-oauth2": "^0.2.0",
"process": "^0.11.10",
"querystring": "^0.2.0",
"sha256": "^0.2.0",
"simple-oauth2": "^3.3.0",
"ssl-root-cas": "^1.3.1",
"uid": "^2.0.2",
"winston": "^3.3.3",
"yargs": "^17.7.2"
},
"devDependencies": {
"babel-jest": "^29.6.2",
"bufferutil": "^4.0.1",
"jest": "^29.6.2",
"minify-xml": "^2.5.0",
"nodemon": "^3.1.7",
"utf-8-validate": "^5.0.5"
}
}