-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
104 lines (104 loc) · 2.78 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "docbrowser",
"version": "01.00.01",
"description": "DNN DocBrowser module",
"dnn": {
"projectType": "module",
"name": "Connect.DocBrowser",
"friendlyName": "DocBrowser Module",
"packageName": "Connect_DocBrowser",
"folder": "MVC/Connect/DocBrowser",
"iconFile": "DesktopModules\\MVC\\Connect\\DocBrowser\\docbrowser.png",
"owner": {
"name": "Peter Donker",
"organization": "Connect",
"url": "http://www.bring2mind.net.org",
"email": "info@bring2mind.net"
},
"module": {
"azureCompatible": "true",
"moduleName": "Connect_DocBrowser",
"foldername": "MVC/Connect/DocBrowser",
"moduleDefinitions": [
{
"friendlyName": "Connect DocBrowser",
"defaultCacheTime": 0,
"moduleControls": [
{
"controlSrc": "Connect.DNN.Modules.DocBrowser.Controllers/Home/Index.mvc",
"supportsPartialRendering": "False",
"controlType": "View",
"viewOrder": 0
}
]
}
]
},
"pathsAndFiles": {
"devFolder": "./DocBrowser",
"pathToAssemblies": "./DocBrowser/bin",
"assemblies": [
"Connect.DNN.Modules.DocBrowser.dll",
"Connect.DocBrowser.Core.dll",
"Markdig.dll"
],
"excludeFilter": [
"DocBrowser/bin/",
"DocBrowser/obj/",
"bin/",
"obj/"
],
"zipName": "Connect.DocBrowser",
"releaseFiles": [
"App_LocalResources/*.resx",
"**/*.ascx",
"Views/**/*.cshtml",
"js/*.js",
"css/*.css",
"*.css",
"**/*.html",
"**/*.png",
"**/*.gif",
"*.txt"
]
}
},
"scripts": {
"build": "node_modules\\.bin\\webpack -p",
"watch": "node_modules\\.bin\\webpack --progress --colors --watch"
},
"devDependencies": {
"@types/jquery": "^3.3.4",
"@types/react": "^16.4.14",
"@types/react-dom": "^16.0.7",
"@types/react-router-dom": "^4.3.1",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.1",
"gulp-debug": "^4.0.0",
"gulp-dnn-manifest": "0.3.1",
"gulp-dotnet-assembly-info": "^0.1.12",
"gulp-filter": "^5.1.0",
"gulp-less": "^4.0.1",
"gulp-markdown": "^2.0.1",
"gulp-minify-css": "^1.2.4",
"gulp-msbuild": "^0.5.5",
"gulp-plumber": "^1.2.0",
"gulp-rename": "^1.3.0",
"gulp-sourcemaps": "^2.6.4",
"gulp-uglify": "^3.0.0",
"gulp-util": "^3.0.8",
"gulp-zip": "^4.1.0",
"jquery": "^3.3.1",
"less-plugin-clean-css": "^1.5.1",
"merge2": "^1.2.2",
"ts-loader": "3.5.0",
"typescript": "^2.9.2",
"webpack": "3.12.0"
},
"dependencies": {
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1"
}
}