forked from Giveth/feathers-giveth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.06 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
{
"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",
"deploy-local": "npm run reset-db && node scripts/deploy.js",
"start": "babel-watch src",
"start:networks": "node scripts/startBridge.js",
"start:networks:debug": "LOG_LEVEL=debug node scripts/startBridge.js",
"serve": "npm run build && pm2 startOrRestart ecosystem.config.js --env production",
"mocha": "mocha test/ --recursive --compilers js:babel-core/register",
"prettier": "prettier 'src/**/*.js*' -l",
"prettier:write": "prettier 'src/app/**/*.js' --write",
"reset-db": "node scripts/resetDataBase.js"
},
"dependencies": {
"@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",
"bignumber.js": "^6.0.0",
"compression": "^1.7.0",
"cors": "^2.8.4",
"dauria": "^2.0.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",
"fs-blob-store": "^5.2.1",
"giveth-liquidpledging": "1.0.1",
"helmet": "^3.8.1",
"lerna": "^2.5.1",
"lpp-campaign": "1.0.0",
"lpp-capped-milestone": "1.0.2",
"minimetoken": "^0.2.0",
"mkdirp": "^0.5.1",
"mongoose": "^5.1.3",
"multer": "^1.3.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",
"web3": "git://github.com/perissology/web3.js.git#contract-provider",
"web3-core-promievent": "1.0.0-beta.34",
"web3-eth-accounts": "1.0.0-beta.34",
"web3-eth-contract": "1.0.0-beta.34",
"web3-utils": "^1.0.0-beta.26",
"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.10.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-prettier": "^2.4.0",
"ganache-cli": "^6.1.2",
"giveth-bridge": "1.0.4",
"lerna": "^2.2.0",
"mocha": "^3.5.0",
"prettier": "1.9.2",
"prompt-confirm": "^2.0.4",
"rimraf": "^2.6.2"
}
}