forked from OriginProtocol/origin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.3 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
{
"name": "@origin/messaging",
"version": "1.0.0",
"description": "Node server for IPFS pubsub persistent communications",
"main": "src/index.js",
"directories": {
"test": "tests"
},
"scripts": {
"build": "per-env",
"build:production": "babel src -d dist --presets @babel/env",
"lint": "eslint . && npm run prettier:check",
"prettier": "prettier --write *.js \"{src,test}/**/*.js\"",
"prettier:check": "prettier -c *.js \"{src,test}/**/*.js\"",
"prestart:production": "npm run build",
"start": "per-env",
"orbit-to-db": "babel-node src/orbit-to-db.js --presets @babel/env",
"start:development": "nodemon --exec 'babel-node' src/index.js --presets @babel/env",
"start:production": "node dist/index.js",
"test": "NODE_ENV=test mocha -r @babel/register -r @babel/polyfill -t 10000 --exit test",
"migrate": "sequelize db:migrate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OriginProtocol/origin/origin-messaging"
},
"author": "Origin Protocol Inc",
"license": "MIT",
"bugs": {
"url": "https://github.com/OriginProtocol/origin/issues"
},
"dependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/register": "7.9.0",
"@origin/graphql": "^0.1.0",
"cross-fetch": "^3.0.4",
"dotenv": "^8.0.0",
"envkey": "^1.2.6",
"esm": "3.2.25",
"express-ws": "^4.0.0",
"ipfs": "^0.40.0",
"ipfs-api": "^26.1.2",
"ipfs-log": "^4.2.0",
"ipfs-pubsub-1on1": "0.0.6",
"json-stable-stringify": "^1.0.1",
"logplease": "^1.2.15",
"mocha": "^7.0.0",
"nock": "^11.3.5",
"orbit-db": "^0.23.0",
"per-env": "^1.0.2",
"pg": "^7.11.0",
"pg-hstore": "^2.3.3",
"prettier": "^1.18.2",
"rate-limiter-flexible": "^1.0.0",
"redis": "^2.8.0",
"sequelize": "^5.8.12",
"sequelize-cli": "^5.5.0",
"superagent": "^5.1.0",
"web3-eth": "^1.2.1",
"web3-utils": "^1.2.1"
},
"devDependencies": {
"@babel/node": "7.8.7",
"chai": "4.2.0",
"crypto-js": "3.1.9-1",
"eslint": "6.8.0",
"eth-ecies": "1.0.3",
"nodemon": "2.0.2",
"prettier": "1.19.1",
"secp256k1": "3.8.0",
"supertest": "4.0.2"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}