-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathPackage.swift
33 lines (31 loc) · 1.31 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
31
32
33
// swift-tools-version:4.0
import PackageDescription
let package = Package(
name: "OrderSystem",
dependencies: [
.package(url: "https://github.com/skelpo/ModelResponse.git", from: "0.1.0"),
.package(url: "https://github.com/skelpo/TaxCalculator.git", from: "0.1.0"),
.package(url: "https://github.com/skelpo/Transaction.git", from: "0.5.0"),
.package(url: "https://github.com/skelpo/TransactionStripe.git", from: "0.2.1"),
.package(url: "https://github.com/skelpo/TransactionPayPal.git", from: "0.1.0"),
.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/skelpo/JWTMiddleware.git", from: "0.6.1"),
.package(url: "https://github.com/vapor-community/stripe-provider.git", from: "2.2.0")
],
targets: [
.target(name: "App", dependencies: [
"Vapor",
"FluentMySQL",
"JWTMiddleware",
"Stripe",
"Transaction",
"TransactionStripe",
"TransactionPayPal",
"TaxCalculator",
"ModelResponse"
]),
.target(name: "Run", dependencies: ["App"]),
.testTarget(name: "AppTests", dependencies: ["App"])
]
)