forked from stripe-archive/stripe-payments-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 823 Bytes
/
package.json
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": "stripe-payments-demo",
"description": "Sample store accepting universal payments on the web with Stripe Elements, Payment Request, Apple Pay, Google Pay, Microsoft Pay, and the Sources API.",
"version": "0.0.1",
"private": true,
"author": "Romain Huet",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/stripe/stripe-payments-demo.git"
},
"engines": {
"node": "10.x"
},
"scripts": {
"start": "node server/node/server.js",
"setup-products": "node server/node/setup.js",
"postinstall": "npm run setup-products"
},
"dependencies": {
"body-parser": "^1.17.1",
"dotenv": "^4.0.0",
"ejs": "^2.5.7",
"express": "^4.15.2",
"morgan": "^1.9.1",
"stripe": "^6.28.0"
},
"devDependencies": {
"ngrok": "^3.1.1"
}
}