-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
97 lines (97 loc) · 2.79 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
{
"name": "giveth-bridge-monitor",
"version": "0.1.0",
"private": true,
"main": "src",
"keywords": [
"feathers"
],
"author": {
"name": "Max Kant",
"email": "[email protected]"
},
"contributors": [],
"bugs": {},
"directories": {
"lib": "src",
"test": "test/"
},
"engines": {
"node": "^8.0.0",
"npm": ">= 3.0.0"
},
"scripts": {
"build": "react-scripts build",
"test:feathers": "npm run eslint && npm run mocha",
"test:ui": "react-scripts test --env=jsdom",
"eslint": "eslint src/. test/. --config .eslintrc.json",
"start:feathers": "node feathers-src/",
"start:ui": "react-scripts start",
"start": "npm run start:feathers & npm run start:ui",
"testnet": "REACT_APP_ENVIRONMENT=testnet NODE_ENV=testnet npm run start",
"mocha": "mocha test/ --recursive --exit",
"purge": "rm -r ./data/",
"serve": "pm2 startOrRestart ecosystem.config.js --env production",
"re-serve": "rm -r ./data && pm2 startOrRestart ecosystem.config.js --env production",
"logs": "pm2 logs giveth-bridge-monitor [--lines 1000]",
"eject": "react-scripts eject"
},
"dependencies": {
"@feathersjs/client": "^4.5.11",
"@feathersjs/configuration": "^4.5.11",
"@feathersjs/errors": "^4.5.11",
"@feathersjs/express": "^4.5.11",
"@feathersjs/feathers": "^4.5.11",
"@feathersjs/socketio": "^4.5.11",
"@feathersjs/socketio-client": "^4.5.11",
"@giveth/bridge-contract": "^1.0.6",
"bignumber.js": "^9.0.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"ethers": "^4.0.48",
"feathers-hooks-common": "^4.20.7",
"feathers-memory": "^4.1.0",
"feathers-mongoose": "^8.3.3",
"helmet": "^4.6.0",
"moment-timezone": "^0.5.33",
"mongoose": "^5.12.9",
"nedb": "^1.8.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-modal": "^3.8.1",
"react-scripts": "^4.0.3",
"react-table": "^6.11.5",
"react-tabs": "^3.2.2",
"reset-css": "^3.0.0",
"serve-favicon": "^2.5.0",
"socket.io-client": "2.4.0",
"triple-beam": "^1.3.0",
"typeface-roboto": "^1.1.13",
"web3": "^1.5.1",
"web3-react": "^5.0.5",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.2.1"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.26.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-mocha": "^8.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"mocha": "^5.1.1",
"prettier": "^2.3.0",
"request": "^2.85.0",
"request-promise": "^4.2.2"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}