-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPackage.swift
executable file
·21 lines (20 loc) · 1.05 KB
/
Package.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// swift-tools-version:4.0
import PackageDescription
let package = Package(
name: "TranseoTemplate",
dependencies: [
.package(url: "https://github.com/vapor/vapor.git", from: "3.0.0"),
.package(url: "https://github.com/vapor/fluent-mysql.git", from: "3.0.0"),
.package(url: "https://github.com/vapor/redis.git", from: "3.0.0"),
.package(url: "https://github.com/vapor/auth.git", from: "2.0.0"),
.package(url: "https://github.com/gotranseo/flash.git", from: "3.0.1"),
.package(url: "https://github.com/vapor/url-encoded-form.git", from: "1.0.0"),
.package(url: "https://github.com/vapor/leaf.git", from: "3.0.0"),
.package(url: "https://github.com/brokenhandsio/VaporSecurityHeaders.git", from: "2.0.0")
],
targets: [
.target(name: "App", dependencies: ["FluentMySQL", "Vapor", "Redis", "Authentication", "Flash", "URLEncodedForm", "Leaf", "VaporSecurityHeaders"]),
.target(name: "Run", dependencies: ["App"]),
.testTarget(name: "AppTests", dependencies: ["App"])
]
)