-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.2 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
{
"name": "wormhole-react-scaffold",
"license": "MIT",
"description": "Basic react app w/ Wormhole SDK bindings",
"author": "Gabriel Cardona @ Bitcoin.com",
"version": "0.6.0",
"private": true,
"dependencies": {
"bitbox-cli": "^1.6.6",
"lodash": "^4.17.11",
"node-sass": "^4.9.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-scripts": "1.1.1",
"sass-loader": "^7.0.1"
},
"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": {
"chai": "^4.1.2",
"flow-bin": "^0.64.0",
"nyc": "^11.6.0",
"sinon": "^4.5.0",
"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",
"node-mocks-http": "^1.7.0",
"nodemon": "^1.8.1",
"supertest": "^2.0.0",
"prettier": "^1.14.2"
}
}