forked from Giveth/feathers-giveth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "feathers-giveth",
"description": "Real-time json cache for blockchain data.",
"version": "0.0.0",
"homepage": "",
"main": "src",
"keywords": [
"feathers"
],
"author": {
"name": "ojones",
"email": "[email protected]"
},
"contributors": [],
"bugs": {},
"directories": {
"lib": "src",
"test": "test/"
},
"engines": {
"node": ">= 6.0.0",
"yarn": ">= 0.18.0"
},
"scripts": {
"clean": "rm -rf build && mkdir build",
"build-server": "babel -d ./build src",
"build": "npm run clean && npm run build-server",
"test": "npm run eslint && npm run mocha",
"eslint": "eslint src/. test/. --config .eslintrc.json",
"testrpc": "[ ! -d data/testrpc ] && mkdir -p data/testrpc; node node_modules/ethereumjs-testrpc/build/cli.node.js -d --ws --gasLimit 6500000 --db data/testrpc",
"start": "babel-watch src",
"serve": "npm run build && pm2 startOrRestart ecosystem.config.js --env production",
"serve-restart": "npm run build && pm2 startOrRestart ecosystem.config.js --env production",
"mocha": "mocha test/ --recursive --compilers js:babel-core/register"
},
"dependencies": {
"body-parser": "^1.17.2",
"compression": "^1.7.0",
"cors": "^2.8.4",
"dauria": "^2.0.0",
"feathers": "^2.1.7",
"feathers-authentication": "^1.2.7",
"feathers-authentication-hooks": "^0.1.4",
"feathers-authentication-jwt": "^0.3.2",
"feathers-blob": "^1.3.1",
"feathers-configuration": "^0.4.1",
"feathers-errors": "^2.9.1",
"feathers-hooks": "^2.0.2",
"feathers-hooks-common": "^3.6.1",
"feathers-memory": "^1.1.0",
"feathers-nedb": "^2.6.2",
"feathers-rest": "^1.8.0",
"feathers-socketio": "^2.0.0",
"feathers-swagger": "^0.5.0",
"fs-blob-store": "^5.2.1",
"helmet": "^3.8.1",
"liquidpledging": "git://github.com/Giveth/liquidpledging.git#36e15d13b7d63eea823448e472193852dd986672",
"lpp-campaign": "0.0.6",
"lpp-milestone": "git://github.com/Giveth/lpp-milestone.git#5a0fec2c79f21fae71e5ce96915bbcd875c6b75a",
"multer": "^1.3.0",
"nedb": "^1.8.0",
"passport-strategy": "^1.0.0",
"pm2": "^2.4.2",
"sanitize-html": "^1.14.1",
"serve-favicon": "^2.4.3",
"web3": "git://github.com/perissology/web3.js.git#7b99cefbb6ec855441a1ab97087f03043bb6ec23",
"web3-eth-accounts": "^1.0.0-beta.18",
"web3-utils": "^1.0.0-beta.17",
"winston": "^2.3.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-watch": "^2.0.7",
"eslint": "^4.3.0",
"ethereumjs-testrpc": "git://github.com/perissology/testrpc.git#81216dbc",
"lerna": "^2.2.0",
"mocha": "^3.5.0",
"request": "^2.81.0",
"request-promise": "^4.2.1"
}
}