-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
67 lines (67 loc) · 2.21 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
{
"name": "ethvm-socket-server",
"version": "0.0.1",
"description": "backend socket server for ethvm",
"main": "src/index.js",
"scripts": {
"build": "webpack --progress",
"start": "node dist/index.js --remoteRDB --rawCert",
"debug": "webpack --progress --watch & nodemon --watch dist dist/index.js",
"compose": "webpack --progress --watch & nodemon --watch dist dist/index.js --remoteRDB --rawCert",
"gcloud": "webpack --progress --watch & nodemon --watch dist dist/index.js --remoteRDB --rawCert"
},
"repository": {
"type": "git",
"url": "git+https://github.com/enKryptIO/ethvm-socket-server.git"
},
"keywords": [
"ethvm",
"socketio",
"node",
"socket",
"ethereum"
],
"author": "kvhnuke",
"license": "MIT",
"bugs": {
"url": "https://github.com/enKryptIO/ethvm-socket-server/issues"
},
"homepage": "https://github.com/enKryptIO/ethvm-socket-server#readme",
"dependencies": {
"bignumber.js": "^5.0.0",
"ethereumjs-account": "^2.0.4",
"ethereumjs-vm": "git+https://github.com/kvhnuke/ethereumjs-vm.git",
"ioredis": "^3.2.2",
"json-rpc2": "git+https://github.com/kvhnuke/node-jsonrpc2.git",
"lodash": "^4.17.4",
"lokijs": "^1.5.1",
"lru": "^3.1.0",
"lrucache": "^1.0.3",
"merkle-patricia-tree": "^2.3.0",
"rethinkdb": "^2.3.3",
"socket.io": "^2.0.4",
"yargs": "^10.0.3"
},
"devDependencies": {
"@types/bignumber.js": "^4.0.3",
"@types/ioredis": "^3.2.4",
"@types/lodash": "^4.14.94",
"@types/lokijs": "^1.5.0",
"@types/lowdb": "^0.15.0",
"@types/node": "^8.5.1",
"@types/rethinkdb": "github:types/npm-rethinkdb",
"@types/socket.io": "^1.4.31",
"@types/yargs": "^10.0.0",
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-node6": "^11.0.0",
"bluebird": "^3.5.1",
"events": "^1.1.1",
"nodemon": "^1.13.3",
"tls": "0.0.1",
"ts-loader": "^3.2.0",
"typescript": "^2.6.2",
"webpack": "^3.10.0"
}
}