-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.39 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
54
55
56
57
58
59
{
"name": "nanopos",
"version": "0.1.1",
"description": "A simple Lightning point-of-sale system, powered by Lightning Charge.",
"bin": "dist/cli.js",
"scripts": {
"start": "./start.sh",
"dist": "./build.sh",
"prepublishOnly": "npm run dist"
},
"files": [
"dist",
"views"
],
"repository": "https://github.com/ElementsProject/nanopos.git",
"keywords": [
"bitcoin",
"lightning",
"lightning-charge",
"PoS",
"point-of-sale"
],
"author": "Nadav Ivgi",
"license": "MIT",
"dependencies": {
"babel-polyfill": "^6.26.0",
"body-parser": "^1.18.2",
"bootswatch": "^4.0.0-beta.3",
"btcpay": "github:btcpayserver/node-btcpay",
"cookie-parser": "^1.4.3",
"csurf": "^1.9.0",
"express": "^4.16.2",
"fmtbtc": "0.0.2",
"js-yaml": "^3.10.0",
"lightning-charge-client": "^0.1.7",
"mailgun-js": "^0.22.0",
"meow": "^5.0.0",
"morgan": "^1.9.0",
"only": "0.0.2",
"pug": "^2.0.0-rc.4"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babelify": "^8.0.0",
"browserify-middleware": "^8.0.0",
"jquery": "^3.3.1",
"pugify": "^2.2.0",
"qrcode": "^1.2.0"
},
"browserify": {
"transform": [
"babelify",
"pugify"
]
}
}