-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
executable file
·26 lines (24 loc) · 1.38 KB
/
Package.swift
File metadata and controls
executable file
·26 lines (24 loc) · 1.38 KB
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
// swift-tools-version:4.0
import PackageDescription
let package = Package(
name: "vaporApp",
dependencies: [
// 💧 A server-side Swift web framework.
.package(url: "https://github.com/vapor/vapor.git", from: "3.0.0"),
// 🔵 Swift ORM (queries, models, relations, etc) built on PostgreSQL.
.package(url: "https://github.com/vapor/fluent-postgresql.git", from: "1.0.0"),
.package(url: "https://github.com/vapor/console.git", from: "3.0.0"),
.package(url: "https://github.com/vapor/validation.git", from: "2.0.0"),
.package(url: "https://github.com/vapor/multipart.git", from: "3.0.0"),
.package(url: "https://github.com/SwiftyBeaver/SwiftyBeaver-Vapor.git", from: "1.1.0"),
.package(url: "https://github.com/vapor/auth.git", from: "2.0.0"),
.package(url: "https://github.com/MihaelIsaev/FCM.git", from: "0.6.2"),
.package(url: "https://github.com/LiveUI/MailCore.git", from: "0.2.2"),
.package(url: "https://github.com/MihaelIsaev/FluentQuery.git", from: "0.4.0")
],
targets: [
.target(name: "App", dependencies: ["Vapor", "FluentPostgreSQL", "Logging", "Validation", "Authentication", "Multipart", "SwiftyBeaverVapor", "FCM", "MailCore", "FluentQuery"]),
.target(name: "Run", dependencies: ["App"]),
.testTarget(name: "AppTests", dependencies: ["App"])
]
)