-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (28 loc) · 943 Bytes
/
package.json
File metadata and controls
31 lines (28 loc) · 943 Bytes
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
{
"name": "nodevirtualaccount",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"invoice": "node Billing/invoices.js",
"paymentmethod": "node Billing/paymentMethod.js",
"quotes": "node Billing/quotes.js",
"subscriptionitems":"node Billing/subscriptionItems.js",
"subscriptions": "node Billing/subscriptions.js",
"banktransfer": "node CheckoutExamples/bankTransfer/server.js",
"cardpayment": "node CheckoutExamples/paymentIntent/server.js",
"customer": "node CoreResources/createCustomer.js",
"virtualbankaccount": "node products/createVirtualBankAccount.js",
"price": "node products/price.js",
"products": "node products/product.js"
},
"author": "Ryan Jones <ryan.jones@kainos.com>",
"license": "ISC",
"dependencies": {
"dotenv": "^16.0.3",
"express": "^4.18.2",
"nodemon": "^2.0.20",
"nunjucks": "^3.2.3",
"stripe": "^11.10.0"
}
}