forked from botweb/BobWallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.74 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
{
"name": "BlindLink",
"version": "0.0.1",
"description": "",
"homepage": "https://github.com/bobwallet/bobwallet/",
"main": "./dist/client/client.js",
"scripts": {
"server": "npm run babel && node ./server/server.js",
"test": "tape ./tests/**/*.js",
"babel": "babel ./client/*.js --presets babel-preset-es2015 --out-dir ./dist/",
"pretest": "npm run babel",
"prettier": "prettier --write --single-quote --trailing-comma es5 app/src/*.js app/src/**/*.js client/*.js server/*.js tests/*.js",
"lint": "node_modules/.bin/eslint client server app/src",
"prepublish": "npm run babel",
"build": "npm install && npm run test && npm run build-app",
"build-app": "cd app && npm install && npm run build",
"build-bcoin": "sh ./scripts/build_bcoin",
"dev": "cd app && npm start",
"copy": "cd app && npm run copy-blindlink",
"release": "npm run prettier && npm run test && npm version patch"
},
"author": "Bob ([email protected])",
"license": "MIT",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-preset-es2015": "6.24.1",
"eslint": "4.18.2",
"eslint-config-prettier": "2.9.0",
"eslint-plugin-prettier": "2.6.0",
"eslint-plugin-react": "7.7.0",
"prettier": "1.11.1",
"tape": "4.9.0"
},
"dependencies": {
"axios": "0.18.0",
"bcoin": "1.0.0-beta.15",
"bitcoinjs-lib": "3.3.2",
"bitcoinjs-message": "2.0.0",
"bitcore-explorers": "1.0.1",
"bitcore-lib": "0.15.0",
"bitcore-mnemonic": "1.5.0",
"blind-signatures": "1.0.4",
"body-parser": "1.18.2",
"build-app": "^0.6.0",
"compression": "1.7.2",
"cors": "2.8.4",
"express": "4.16.2",
"normalize-url": "2.0.1",
"path": "0.12.7",
"simple-node-logger": "0.93.37"
}
}