-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
23 lines (20 loc) · 975 Bytes
/
Package.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// swift-tools-version:4.2
import PackageDescription
let package = Package(
name: "MeetingPlace-front",
dependencies: [
// 💧 A server-side Swift web framework.
.package(url: "https://github.com/vapor/vapor.git", from: "3.0.0"),
// 🍃 An expressive, performant, and extensible templating language built for Swift.
.package(url: "https://github.com/vapor/leaf.git", from: "3.0.0"),
// 🔵 Swift ORM (queries, models, relations, etc) built on SQLite.
.package(url: "https://github.com/vapor/fluent-sqlite.git", from: "3.0.0"),
// 👤 Authentication and Authorization framework for Fluent.
.package(url: "https://github.com/vapor/auth.git", from: "2.0.0")
],
targets: [
.target(name: "App", dependencies: ["Leaf", "Vapor", "Authentication", "FluentSQLite"]),
.target(name: "Run", dependencies: ["App"]),
.testTarget(name: "AppTests", dependencies: ["App"])
]
)