forked from Giveth/giveth-bridge-monitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.22 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
{
"name": "giveth-bridge-monitor",
"version": "0.1.0",
"private": true,
"main": "src",
"keywords": [
"feathers"
],
"author": {
"name": "Max Kant",
"email": "maxskant@gmail.com"
},
"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": "^3.4.4",
"@feathersjs/configuration": "^1.0.2",
"@feathersjs/errors": "^3.3.0",
"@feathersjs/express": "^1.2.2",
"@feathersjs/feathers": "^3.1.4",
"@feathersjs/socketio": "^3.2.1",
"@feathersjs/socketio-client": "^1.1.0",
"compression": "^1.7.2",
"cors": "^2.8.4",
"ethers": "^4.0.27",
"feathers-memory": "^2.1.3",
"feathers-nedb": "^3.0.0",
"giveth-bridge": "1.0.3",
"helmet": "^3.12.0",
"nedb": "^1.8.0",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-modal": "^3.8.1",
"react-scripts": "2.1.5",
"react-table": "^6.8.2",
"react-tabs": "^2.2.2",
"reset-css": "^3.0.0",
"serve-favicon": "^2.5.0",
"socket.io-client": "^2.1.0",
"typeface-roboto": "0.0.54",
"web3": "1.0.0-beta.34",
"web3-react": "^5.0.4",
"winston": "^2.4.2"
},
"devDependencies": {
"babel-eslint": "^9.0.0",
"mocha": "^5.1.1",
"request": "^2.85.0",
"request-promise": "^4.2.2"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}