-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
31 lines (24 loc) · 1.33 KB
/
Package.swift
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
// swift-tools-version:4.2
import PackageDescription
let package = Package(
name: "JapanizationClassroom",
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 PostgreSQL.
.package(url: "https://github.com/vapor/fluent-postgresql.git", from: "1.0.0"),
// Handy Swift features that didn't make it into the Swift standard library.
.package(url: "https://github.com/Flinesoft/HandySwift.git", from: "2.7.0"),
// The better way to deal with JSON data in Swift.
.package(url: "https://github.com/SwiftyJSON/SwiftyJSON.git", from: "4.2.0"),
// Lightweight User-Agent String Parser (Port of ua-parser.js in Swift)
.package(url: "https://github.com/malcommac/UAParserSwift.git", from: "1.0.1"),
],
targets: [
.target(name: "App", dependencies: ["UAParserSwift", "SwiftyJSON", "HandySwift", "FluentPostgreSQL", "Leaf", "Vapor"]),
.target(name: "Run", dependencies: ["App"]),
.testTarget(name: "AppTests", dependencies: ["App"])
]
)