-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.59 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
{
"name": "flickrgallery",
"version": "2.2.1",
"description": "Flickr Gallery module for DNN Platform",
"dnn": {
"projectFolders": [
"Server/FlickrGallery"
],
"owner": {
"name": "Peter Donker",
"organization": "DNN Connect",
"url": "http://dnn-connect.org",
"email": "[email protected]"
},
"pathsAndFiles": {
"solutionFile": "./Connect.FlickrGallery.sln",
"pathToAssemblies": "bin",
"devSiteUrl": "",
"devSitePath": "",
"excludeFilter": [
"Connect.CakeUtils",
"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_FlickrGallery"
}
},
"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 Build/watch.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DNN-Connect/FlickrGallery.git"
},
"author": "Peter Donker <[email protected]> (http://www.bring2mind.net)",
"license": "MIT",
"bugs": {
"url": "https://github.com/DNN-Connect/FlickrGallery/issues"
},
"homepage": "https://github.com/DNN-Connect/FlickrGallery#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",
"css-loader": "^3.4.2",
"file-loader": "^3.0.1",
"filemanager-webpack-plugin": "^2.0.5",
"fs-extra": "^7.0.1",
"jquery": "^3.3.1",
"less": "^3.11.1",
"less-loader": "^5.0.0",
"mini-css-extract-plugin": "^0.9.0",
"sass-loader": "^7.1.0",
"style-loader": "^1.1.3",
"ts-loader": "^5.3.3",
"typescript": "^3.3.3",
"validator": "^10.11.0",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3"
},
"dependencies": {
"react": "^16.13.0",
"react-dom": "^16.13.0"
}
}