mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
98 lines
2.7 KiB
98 lines
2.7 KiB
{
|
|
"dependencies": {
|
|
"Autofac": "4.1.1",
|
|
"Autofac.Extensions.DependencyInjection": "4.0.0",
|
|
"IdentityServer4": "1.0.0-rc2",
|
|
"IdentityServer4.AccessTokenValidation": "1.0.1-rc2",
|
|
"IdentityServer4.AspNetIdentity": "1.0.0-rc2",
|
|
"Microsoft.AspNetCore.Authentication.Cookies": "1.0.0",
|
|
"Microsoft.AspNetCore.Authentication.Google": "1.0.0",
|
|
"Microsoft.AspNetCore.Authentication.OpenIdConnect": "1.0.0",
|
|
"Microsoft.AspNetCore.Diagnostics": "1.0.0",
|
|
"Microsoft.AspNetCore.Identity": "1.0.0",
|
|
"Microsoft.AspNetCore.Mvc": "1.0.1",
|
|
"Microsoft.AspNetCore.Razor.Tools": {
|
|
"version": "1.0.0-preview2-final",
|
|
"type": "build"
|
|
},
|
|
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0",
|
|
"Microsoft.AspNetCore.Server.Kestrel": "1.0.1",
|
|
"Microsoft.AspNetCore.StaticFiles": "1.0.0",
|
|
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
|
|
"Microsoft.Extensions.Configuration.Json": "1.0.0",
|
|
"Microsoft.Extensions.Logging": "1.0.0",
|
|
"Microsoft.Extensions.Logging.Console": "1.0.0",
|
|
"Microsoft.Extensions.Logging.Debug": "1.0.0",
|
|
"Microsoft.Extensions.Options.ConfigurationExtensions": "1.0.0",
|
|
"Microsoft.NETCore.App": {
|
|
"version": "1.0.1",
|
|
"type": "platform"
|
|
},
|
|
"MongoDB.Driver": "2.4.0-beta1",
|
|
"NJsonSchema": "5.19.6171.28316",
|
|
"NSwag.AspNetCore": "7.2.0",
|
|
"OpenCover": "4.6.519",
|
|
"ReportGenerator": "2.5.0-beta1",
|
|
"Squidex.Core": "1.0.0-*",
|
|
"Squidex.Events": "1.0.0-*",
|
|
"Squidex.Infrastructure": "1.0.0-*",
|
|
"Squidex.Read": "1.0.0-*",
|
|
"Squidex.Store.MongoDb": "1.0.0-*",
|
|
"Squidex.Write": "1.0.0-*",
|
|
"System.Linq": "4.1.0"
|
|
},
|
|
|
|
"tools": {
|
|
"Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-preview2-final"
|
|
},
|
|
|
|
"frameworks": {
|
|
"netcoreapp1.0": {
|
|
"imports": [
|
|
"dotnet5.6",
|
|
"portable-net45+win8"
|
|
]
|
|
}
|
|
},
|
|
|
|
"nowarn": [ "1591" ],
|
|
|
|
"buildOptions": {
|
|
"emitEntryPoint": true,
|
|
"preserveCompilationContext": true,
|
|
"xmlDoc": true,
|
|
"nowarn": [ "CS1591", "1591", "1573", "1572" ],
|
|
"embed": {
|
|
"include": [
|
|
"Config/Identity/Cert/*.*"
|
|
]
|
|
}
|
|
},
|
|
|
|
"runtimeOptions": {
|
|
"configProperties": {
|
|
"System.GC.Server": true
|
|
}
|
|
},
|
|
|
|
"publishOptions": {
|
|
"include": [
|
|
"appsettings.json",
|
|
"appsettings.Production.json",
|
|
"Views",
|
|
"web.config",
|
|
"wwwroot"
|
|
]
|
|
},
|
|
|
|
"scripts": {
|
|
"prepublish": [
|
|
"npm install",
|
|
"npm run-script build:copy",
|
|
"npm run-script build"
|
|
],
|
|
"postpublish": [
|
|
"dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%"
|
|
]
|
|
}
|
|
}
|
|
|