forked from stripe-archive/stripe-payments-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1002 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
32
33
{
"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 more.",
"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.0.0"
},
"scripts": {
"postinstall": "npm run setup-products",
"setup-products": "node server/node/setup.js",
"setup-cli": "stripe login --project-name=stripe-payments-demo",
"webhook": "stripe listen --project-name=stripe-payments-demo --forward-to http://localhost:8000/webhook",
"start": "node server/node/server.js"
},
"dependencies": {
"body-parser": "^1.17.1",
"dotenv": "^4.0.0",
"ejs": "^2.5.7",
"express": "^4.15.2",
"stripe": "^6.28.0"
},
"devDependencies": {
"@types/faker": "^4.1.5",
"ngrok": "^3.2.7"
}
}