-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 3.38 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"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/.",
"eslint:fix": "eslint src/. test/. --fix",
"testrpc": "mkdirp data/testrpc && node node_modules/ganache-cli/build/cli.node.js -d --gasLimit 6700000 --db data/testrpc -b 5",
"start": "babel-watch src",
"prestart": "npm run build",
"serve": "npm run build && pm2 startOrRestart ecosystem.config.js --env production",
"serve-staging": "npm run build && pm2 startOrRestart ecosystem.config.js --env staging",
"mocha": "mocha test/ --recursive --compilers js:babel-core/register",
"prettier": "prettier 'src/**/*.js*' -l",
"prettier:write": "prettier 'src/app/**/*.js' --write"
},
"dependencies": {
"@feathersjs/authentication-local": "^1.2.1",
"aws-sdk": "^2.298.0",
"babel-runtime": "^6.26.0",
"bignumber.js": "^6.0.0",
"body-parser": "^1.17.2",
"compression": "^1.7.0",
"cors": "^2.8.4",
"dauria": "^2.0.0",
"eth-sig-util": "^1.4.2",
"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-mongoose": "^6.1.4",
"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",
"lodash.intersection": "^4.4.0",
"lpp-capped-milestone-token": "0.0.2",
"lpp-dacs": "0.0.3",
"minimetoken": "^0.2.0",
"mkdirp": "^0.5.1",
"mongoose": "^5.2.13",
"mongoose-type-email": "^1.0.9",
"multer": "^1.3.0",
"nedb": "1.8.0",
"passport-strategy": "^1.0.0",
"pm2": "^2.4.2",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"sanitize-html": "^1.14.1",
"serve-favicon": "^2.4.3",
"truffle-contract": "^3.0.6",
"web3": "1.0.0-beta.33",
"web3-eth-accounts": "^1.0.0-beta.18",
"web3-eth-contract": "^1.0.0-beta.24",
"web3-utils": "^1.0.0-beta.26",
"winston": "^2.3.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-watch": "^2.0.7",
"eslint": "^5.7.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-loader": "^2.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.0",
"ganache-cli": "^7.0.0-beta.0",
"lerna": "^2.2.0",
"mocha": "^3.5.0",
"prettier": "1.14.3"
}
}