forked from Giveth/feathers-giveth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
133 lines (133 loc) · 4.23 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "feathers-giveth",
"description": "Real-time json cache for blockchain data.",
"version": "0.0.0",
"homepage": "",
"main": "src",
"keywords": [
"feathers"
],
"author": {
"name": "ewingrj",
"email": "[email protected]"
},
"contributors": [],
"bugs": {},
"directories": {
"lib": "src",
"test": "test/"
},
"engines": {
"node": ">= 6.0.0",
"yarn": ">= 0.18.0"
},
"husky": {
"hooks": {
"pre-push": "npm run eslint"
}
},
"scripts": {
"test-old": "npm run eslint && npm run mocha",
"test": "LOG_LEVEL=info NODE_ENV=test mocha -t 10000 test/pre-tests-script.js src/**/*.test.js src/**/**/*.test.js test/post-tests-script.js",
"test:circleci": "LOG_LEVEL=info NODE_ENV=test mocha -t 10000 --reporter mocha-junit-reporter test/pre-tests-script.js src/**/*.test.js src/**/**/*.test.js test/post-tests-script.js",
"test:coverage": "nyc -e '.ts' --r html -r lcov -r text npm run test",
"eslint": "eslint src/. test/.",
"eslint:fix": "eslint src/. test/. --fix",
"deploy-local": "npm run reset-db && node scripts/deploy.js",
"deploy-local:rsk": "npm run reset-db && START_NETWORK=false PROVIDER=http://localhost:4444 node scripts/deployNative.js",
"start": "babel-watch -p transform-object-rest-spread ./src/index.js",
"start:rsk": "NODE_ENV=rsk nodemon --inspect src",
"start:networks": "node scripts/startBridge.js",
"start:networks:debug": "LOG_LEVEL=debug node scripts/startBridge.js",
"serve": "pm2 startOrRestart ecosystem.config.js --env production",
"mocha": "mocha test/ --recursive",
"prettify": "prettier --write 'src/**/*.js*'",
"reset-db": "node scripts/resetDataBase.js",
"mongo": "mongod --fork --syslog"
},
"dependencies": {
"@feathers-plus/batch-loader": "^0.3.6",
"@feathersjs/authentication": "2.1.7",
"@feathersjs/authentication-jwt": "2.0.1",
"@feathersjs/configuration": "1.0.2",
"@feathersjs/errors": "3.3.0",
"@feathersjs/express": "1.2.3",
"@feathersjs/feathers": "3.1.7",
"@feathersjs/socketio": "3.2.2",
"axios": "^0.19.2",
"bignumber.js": "^8.1.1",
"compression": "^1.7.0",
"cors": "^2.8.4",
"dauria": "^2.0.0",
"debug": "^3.1.0",
"feathers-authentication-hooks": "0.3.0",
"feathers-blob": "2.0.1",
"feathers-hooks-common": "4.14.1",
"feathers-memory": "2.1.3",
"feathers-mongoose": "6.1.2",
"form-data": "^3.0.0",
"fs-blob-store": "^5.2.1",
"giveth-bridge": "1.0.5",
"giveth-liquidpledging": "1.0.1",
"helmet": "^3.8.1",
"ipfs-api": "^24.0.0",
"is-ipfs": "^0.4.2",
"json2csv": "^4.5.3",
"lodash.groupby": "^4.6.0",
"lodash.merge": "^4.6.2",
"lodash.omit": "^4.5.0",
"lodash.pick": "^4.4.0",
"lpp-campaign": "1.0.0",
"lpp-capped-milestone": "1.1.0",
"lpp-milestones": "1.0.0-beta.1",
"memory-cache": "^0.2.0",
"mkdirp": "^0.5.1",
"mongodb": "^3.3.2",
"mongoose": "5.1.3",
"mongoose-long": "^0.2.1",
"multer": "^1.3.0",
"nyc": "^15.1.0",
"passport-strategy": "^1.0.0",
"request-promise": "^4.2.2",
"sanitize-html": "^1.14.1",
"semaphore": "^1.1.0",
"serve-favicon": "^2.4.3",
"shortid": "^2.2.8",
"triple-beam": "^1.3.0",
"web3": "^1.2.2",
"web3-core-promievent": "^1.2.2",
"web3-eth-accounts": "^1.2.2",
"web3-eth-contract": "^1.2.2",
"web3-utils": "^1.2.2",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.2.1",
"yargs": "^15.3.1",
"config": "^3.3.2"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"babel-polyfill": "^6.26.0",
"babel-watch": "^2.0.8",
"bson": "^4.2.0",
"chai": "^4.2.0",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.5.0",
"eslint-loader": "^3.0.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"ganache-cli": "^6.1.2",
"jsonwebtoken": "^8.5.1",
"lerna": "^2.11.0",
"migrate-mongo": "^8.1.4",
"minimetoken": "^0.2.0",
"mocha": "^3.5.0",
"mocha-junit-reporter": "^2.0.0",
"mongodb-restore": "^1.6.2",
"prettier": "^1.18.2",
"prompt-confirm": "^2.0.4",
"rimraf": "^2.6.2",
"supertest": "^6.0.1"
}
}