-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
39 lines (39 loc) · 1.18 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
{
"name": "bitbox-scaffold-websockets",
"license": "MIT",
"description": "BITBOX Websockets scaffold. Monitors addresses and notifies upon receiving a donation",
"author": "Paul Bergamo @ Bitcoin.com",
"version": "8.4.2",
"engines": {
"node": ">=10.15.3"
},
"dependencies": {
"node-sass": "^4.9.0",
"qrcode-react": "^0.1.16",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-scripts": "^2.1.3",
"sass-loader": "^7.0.1",
"styled-components": "^3.3.3"
},
"scripts": {
"start": "react-scripts start",
"build": "webpack",
"test": "nyc --reporter=text mocha --require babel-core/register --timeout 5000",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"coverage:report": "nyc --reporter=html mocha --require babel-core/register --timeout 5000"
},
"devDependencies": {
"bitbox-sdk": "8.4.2",
"coveralls": "^3.0.2",
"eslint": "^5.5.0",
"eslint-config-prettier": "^3.0.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"prettier": "^1.14.2"
}
}