forked from stripe-archive/stripe-payments-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.04 KB
/
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
32
33
34
{
"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",
"dev": "node server/node/server.js & npm run webhook",
"setup-products": "node server/node/setup.js",
"webhook": "stripe listen --project-name=stripe-payments-demo --forward-to http://localhost:8000/webhook",
"postinstall": "npm run setup-products && brew install stripe/stripe-cli/stripe"
},
"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": {
"@types/faker": "^4.1.5",
"ngrok": "^3.2.3"
}
}