-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
95 lines (95 loc) · 2.54 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
{
"name": "conference",
"version": "2.3.10",
"description": "Conference module",
"dnn": {
"projectFolders": [
"Server/Conference"
],
"owner": {
"name": "Peter Donker",
"organization": "DNN Connect",
"url": "http://dnn-connect.org",
"email": "peter@bring2mind.net"
},
"pathsAndFiles": {
"solutionFile": "./Connect.Conference.sln",
"pathToAssemblies": "./bin",
"devSiteUrl": "",
"devSitePath": "",
"excludeFilter": [
"bin/",
"obj/",
"node_modules",
"_*"
],
"licenseFile": "./License.md",
"releaseNotesFile": "",
"releaseFiles": [
"App_LocalResources/*.resx",
"**/*.ascx",
"Views/**/*.cshtml",
"js/*.js",
"css/*.css",
"*.css",
"**/*.html",
"**/*.png",
"**/*.gif",
"**/*.eot",
"**/*.svg",
"**/*.ttf",
"**/*.woff",
"**/*.woff2",
"*.txt"
],
"zipName": "Connect.Conference"
}
},
"scripts": {
"build": "set NODE_ENV=production&&webpack -p --config Client/webpack.config.js",
"watch": "webpack --config Client/webpack.config.js --progress --colors --watch",
"watch-js": "node BuildSupport/watch.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DNN-Connect/Conference.git"
},
"author": "Peter Donker <peter@bring2mind.net> (http://www.bring2mind.net)",
"license": "ISC",
"bugs": {
"url": "https://github.com/DNN-Connect/Conference/issues"
},
"homepage": "https://github.com/DNN-Connect/Conference#readme",
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@types/jquery": "^3.3.29",
"@types/react": "^16.8.3",
"@types/react-dom": "^16.8.2",
"babel-loader": "^8.0.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"chokidar": "^2.1.2",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^3.0.1",
"fs-extra": "^7.0.1",
"jquery": "^3.3.1",
"moment": "^2.24.0",
"react-sortable-tree": "^2.6.0",
"sass-loader": "^7.1.0",
"ts-loader": "^5.3.3",
"typescript": "^3.3.3",
"validator": "^10.11.0",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3"
},
"dependencies": {
"interactjs": "^1.3.4",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-router": "^4.3.1",
"simple-ajax-uploader": "^2.5.5"
}
}