-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.05 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@hso/d365-cli",
"version": "7.0.8",
"author": "HSO Innovation <[email protected]> (https://www.hso.com)",
"description": "Dynamics 365 Command Line Interface for TypeScript projects for Dataverse",
"repository": {
"type": "git",
"url": "https://github.com/hso-nn/d365-cli.git"
},
"keywords": [
"dynamics crm",
"dynamics d365",
"webapi",
"xrm",
"typescript",
"d365",
"dataverse",
"cli",
"crm",
"ce",
"hso"
],
"files": [
"bin/"
],
"license": "MIT",
"scripts": {
"build": "npm run clean && webpack --mode development",
"build:prod": "npm run clean && webpack --mode production --bail --progress",
"clean": "IF exist bin\\root\\deploy (rmdir /s /q bin\\root\\deploy)"
},
"engines": {
"node": ">=14"
},
"bin": {
"hso-d365": "bin/hso-d365"
},
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@types/express": "^4.17.21",
"@types/express-session": "^1.17.10",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.10.0",
"@types/sanitize-html": "^2.9.5",
"@types/shelljs": "^0.8.15",
"@types/webpack": "^5.28.5",
"@types/webpack-node-externals": "^3.0.4",
"@types/xml2js": "^0.4.14",
"@types/xrm": "^9.0.77",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.54.0",
"eslint-webpack-plugin": "^4.0.1",
"json-loader": "^0.5.7",
"terser-webpack-plugin": "^5.3.9",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"@azure/msal-node": "^2.5.1",
"@xmldom/xmldom": "^0.8.10",
"colors": "^1.4.0",
"commander": "^11.1.0",
"express": "^4.18.2",
"express-session": "^1.17.3",
"inquirer": "^7.3.3",
"open": "^7.3.0",
"shelljs": "^0.8.5",
"xml2js": "^0.6.2"
}
}