-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
75 lines (75 loc) · 2.08 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "pollofeed",
"version": "0.1.0",
"description": "Bitcoin Lightning Powered Chicken Feeder",
"repository": "https://github.com/j-chimienti/pollofeed",
"issues": "https://github.com/j-chimienti/pollofeed/issues",
"homepage": "https://pollofeed.com",
"license": "MIT",
"maintainers": [
"joe chimienti <[email protected]>"
],
"private": false,
"dependencies": {
"@sendgrid/mail": "^6.4.0",
"babel-cli": "^6.26.0",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-watch": "^2.0.7",
"babelify": "^8.0.0",
"body-parser": "^1.18.2",
"bootstrap": "^4.0.0",
"bootswatch": "^4.0.0-beta.3",
"browserify": "^16.5.0",
"browserify-middleware": "^8.0.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.3",
"csurf": "^1.9.0",
"dotenv": "^8.0.0",
"express": "^4.16.2",
"fmtbtc": "0.0.2",
"helmet": "^3.21.1",
"http-errors": "^1.7.2",
"jquery": "^3.3.1",
"lightning-charge-client": "^0.1.7",
"moment": "^2.24.0",
"mongodb": "^3.2.4",
"morgan": "^1.9.0",
"popper.js": "^1.15.0",
"pug": "^2.0.0-rc.4",
"pugify": "^2.2.0",
"qrcode": "^1.2.0",
"supertest": "^4.0.2",
"tape": "^4.10.1",
"terser": "^4.6.3",
"only": "latest"
},
"scripts": {
"start": "node src/www.js",
"start:dev": "./dev.sh",
"dev": "./dev.sh",
"build": "./build.sh",
"deploy": "./deploy.sh",
"predeploy": "npm run build",
"test": "node ./node_modules/.bin/tape test/*.js",
"lint:fix": "eslint --fix --ext .jsx,.js src src/server",
"totals": "node src/bin/runTotals.js",
"today": "node src/bin/ordersByDay.js",
"feed": "node src/bin/manfeed.js",
"build::readme": "npx readme-md-generator",
"build::readme::default": "npx readme-md-generator -y"
},
"browserify": {
"transform": [
"babelify",
"pugify"
]
},
"devDependencies": {
"depcheck": "^0.9.2",
"eslint": "^6.8.0",
"nodemon": "^1.19.0"
}
}