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 195
/
Copy pathpackage.json
77 lines (77 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
{
"name": "@origin/bridge",
"version": "0.1.0",
"description": "Third party identity verification attestation server",
"author": "Origin Protocol Inc",
"license": "MIT",
"main": "src/app.js",
"scripts": {
"build": "per-env",
"build:production": "babel src -d dist",
"lint": "eslint '**/*.js' && npm run prettier:check",
"migrate": "sequelize db:migrate",
"prettier": "prettier --write *.js \"**/*.js\"",
"prettier:check": "prettier -c *.js \"**/*.js\"",
"start": "per-env",
"start:development": "nodemon -r ./src/env.js src/app.js",
"start:production": "node -r ./src/env.js src/app.js",
"test": "NODE_ENV=test mocha --exit",
"backfill:profile": "node -r ./src/env.js ./src/scripts/20190730-backfill-twitter-profile-data.js",
"backfill:profile:dryrun": "node -r ./src/env.js ./src/scripts/20190730-backfill-twitter-profile-data.js --dry-run"
},
"repository": {
"type": "git",
"url": "https://github.com/OriginProtocol"
},
"keywords": [
"Origin Protocol",
"Ethereum",
"DApp"
],
"dependencies": {
"@google-cloud/pubsub": "1.5.0",
"@origin/auth-utils": "^0.1.0",
"@origin/growth-shared": "^0.1.0",
"@origin/identity": "^0.1.0",
"@origin/ip2geo": "^0.1.0",
"@sendgrid/mail": "^6.4.0",
"body-parser": "^1.19.0",
"bottleneck": "^2.19.5",
"connect-session-sequelize": "^6.0.0",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"envkey": "^1.2.6",
"express": "^4.17.1",
"express-session": "^1.16.2",
"express-validator": "^6.1.0",
"ipaddr.js": "^1.9.1",
"json-stable-stringify": "^1.0.1",
"libphonenumber-js": "^1.7.20",
"lodash": "^4.17.15",
"logplease": "^1.2.15",
"mock-session": "0.0.5",
"nock": "^11.0.0",
"oauth": "^0.9.15",
"per-env": "^1.0.2",
"pg": "^7.11.0",
"pg-hstore": "^2.3.3",
"prettier": "^1.18.2",
"redis": "^2.8.0",
"sequelize": "^5.8.12",
"sequelize-cli": "^5.5.0",
"sinon": "^8.0.0",
"superagent": "^5.1.0",
"web3": "1.0.0-beta.34"
},
"devDependencies": {
"chai": "4.2.0",
"eslint": "6.8.0",
"mocha": "7.0.1",
"nodemon": "2.0.2",
"supertest": "4.0.2"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}