This repository was archived by the owner on Sep 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 195
/
Copy pathpackage.json
54 lines (54 loc) · 1.46 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
{
"name": "@origin/relayer",
"description": "Origin relayer service",
"version": "0.1.0",
"engines": {
"node": "12.x"
},
"author": "Origin Protocol Inc",
"license": "MIT",
"bugs": {
"url": "https://github.com/OriginProtocol/origin/issues"
},
"dependencies": {
"@origin/contracts": "^0.8.6",
"@origin/ip2geo": "^0.1.0",
"@origin/web3-provider": "^0.1.0",
"@sentry/node": "5.15.4",
"cors": "2.8.5",
"dotenv": "8.2.0",
"envkey": "1.2.7",
"ethereumjs-util": "6.2.0",
"express": "4.17.1",
"express-prom-bundle": "5.1.5",
"logplease": "1.2.15",
"per-env": "1.0.2",
"pg": "7.18.1",
"prom-client": "11.5.3",
"redis": "2.8.0",
"sequelize": "5.21.4",
"sequelize-cli": "5.5.1",
"web3": "1.0.0-beta.34"
},
"devDependencies": {
"chalk": "3.0.0",
"mocha": "7.0.1",
"nodemon": "2.0.2",
"prettier": "1.19.1"
},
"scripts": {
"lint": "eslint . && npm run prettier:check",
"prettier": "prettier --write *.js \"src/**/*.js\"",
"prettier:check": "prettier -c *.js \"src/**/*.js\"",
"migrate": "sequelize db:migrate",
"start": "per-env",
"start:development": "nodemon src/app.js",
"start:production": "node src/app.js",
"test": "LOG_LEVEL=NONE NODE_ENV=test mocha --timeout 10000 --file test/setup --exit",
"test:validator": "LOG_LEVEL=NONE NODE_ENV=test mocha --exit test/validator.test.js"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}