This repository has been archived by the owner on Sep 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 196
/
package.json
79 lines (79 loc) · 2.27 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
{
"name": "@origin/token-transfer-server",
"version": "0.1.0",
"description": "API for Origin Investor Portal",
"engines": {
"node": "12.x"
},
"author": "Origin Protocol Inc",
"license": "MIT",
"main": "app/app.js",
"scripts": {
"lint": "eslint '**/*.js' && npm run prettier:check",
"prettier": "prettier --write *.js \"**/*.js\"",
"prettier:check": "prettier -c *.js \"**/*.js\"",
"migrate": "sequelize db:migrate",
"seed": "sequelize db:seed:all",
"start": "per-env",
"start:development": "nodemon src/app.js",
"start:production": "node src/app.js",
"test": "LOG_LEVEL=NONE NODE_ENV=test mocha -r @babel/register -r @babel/polyfill -t 10000 --exit test/**/*.js",
"test:debug": "LOG_LEVEL=DEBUG NODE_ENV=test mocha -r @babel/register -r @babel/polyfill -t 10000 --exit test/**/*.js"
},
"dependencies": {
"@origin/contracts": "^0.8.6",
"@origin/ip2geo": "^0.1.0",
"@origin/token": "^0.1.0",
"@sendgrid/mail": "^7.0.0",
"@sentry/node": "5.15.4",
"async-lock": "^1.2.2",
"babel-plugin-rewire": "^1.2.0",
"bignumber.js": "9.0.0",
"body-parser": "^1.19.0",
"connect-sqlite3": "^0.9.11",
"cors": "^2.8.5",
"csvtojson": "^2.0.10",
"envkey": "^1.2.7",
"eslint": "^6.8.0",
"express": "^4.17.1",
"express-session": "^1.17.0",
"express-useragent": "^1.0.13",
"express-validator": "^6.4.0",
"helmet": "^3.22.0",
"jsonwebtoken": "^8.5.1",
"lodash-es": "^4.17.15",
"logplease": "^1.2.15",
"mjml": "^4.6.2",
"moment": "^2.24.0",
"node-cron": "^2.0.3",
"notp": "^2.0.3",
"passport": "^0.4.1",
"passport-http-bearer": "^1.0.1",
"per-env": "^1.0.2",
"pg": "^8.0.0",
"prettier": "^1.19.1",
"qrcode": "^1.4.4",
"sequelize": "^5.21.5",
"sequelize-cli": "^5.5.1",
"sinon": "^9.0.1",
"superagent": "^5.2.2",
"thirty-two": "^1.0.2",
"web3": "1.2.6"
},
"devDependencies": {
"@babel/core": "7.9.0",
"@babel/polyfill": "7.8.7",
"@babel/preset-env": "7.9.5",
"@babel/register": "7.9.0",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"chai-bignumber": "3.0.0",
"chai-moment": "0.1.0",
"mocha": "7.1.1",
"nodemon": "2.0.2"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}