-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.31 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "monei-payments-demo",
"description": "Sample store accepting card payments on the web with MONEI Components and Payments API.",
"version": "1.0.0",
"main": "index.js",
"homepage": "https://payments-demo.monei.com/",
"author": "MONEI <[email protected]> (https://monei.com)",
"license": "MIT",
"contributors": [
"Dmitriy Nevzorov <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/MONEI/monei-payments-demo"
},
"keywords": [
"monei",
"monei-components",
"node",
"javascript",
"payments",
"payment-methods",
"payment-request"
],
"devDependencies": {
"@types/faker": "^5.1.2",
"@types/request-promise": "^4.1.47",
"ngrok": "^4.3.3",
"prettier": "^2.3.2"
},
"dependencies": {
"@monei-js/node-sdk": "^1.4.2",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"dotenv": "^8.2.0",
"ejs": "^3.1.5",
"express": "^4.17.1",
"express-force-ssl": "^0.3.2",
"express-handlebars": "^5.3.2",
"faker": "^5.1.0",
"request-promise": "^4.2.6"
},
"scripts": {
"start": "node server/server.js",
"web": "node server/server.js"
},
"prettier": {
"bracketSpacing": false,
"jsxBracketSameLine": true,
"printWidth": 120,
"trailingComma": "none"
}
}