forked from celo-org/celo-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.18 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
{
"name": "@celo/attestation-service",
"version": "1.2.0",
"description": "Issues attestation messages for Celo's identity protocol",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"author": "Celo",
"license": "Apache-2.0",
"homepage": "https://github.com/celo-org/celo-monorepo/tree/master/packages/attestation-service",
"repository": "https://github.com/celo-org/celo-monorepo/tree/master/packages/attestation-service",
"keywords": [
"celo",
"blockchain"
],
"scripts": {
"build": "tsc -b .",
"clean": "tsc -b . --clean",
"clean:all": "yarn clean && rm -rf lib",
"prepublishOnly": "yarn build:gen && yarn build",
"start-ts": "TS_NODE_FILES=true ts-node src/index.ts",
"start": "node lib/index.js",
"db:create:dev": "mkdir -p db && touch db/dev.db",
"db:migrate": "sequelize db:migrate",
"db:migrate:undo": "sequelize db:migrate:undo",
"db:migrate:dev": "sequelize db:migrate",
"dev": "NODE_ENV=dev CONFIG=config/.env.development nodemon",
"lint": "tslint -c tslint.json --project ."
},
"dependencies": {
"@celo/contractkit": "1.2.2-dev",
"@celo/utils": "1.2.2-dev",
"bignumber.js": "^9.0.0",
"body-parser": "1.19.0",
"bunyan": "1.8.12",
"bunyan-gke-stackdriver": "0.1.2",
"bunyan-debug-stream": "2.0.0",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"eth-lib": "^0.2.8",
"io-ts": "2.0.1",
"fp-ts": "2.1.1",
"nexmo": "2.4.2",
"moment": "^2.29.0",
"web3": "1.3.5",
"express": "^4.17.1",
"express-rate-limit": "^5.1.1",
"express-request-id": "1.4.1",
"lodash": "^4.17.14",
"messagebird": "^3.5.0",
"mysql2": "^2.1.0",
"node-fetch": "^2.6.1",
"pg": "7.12.1",
"pg-hstore": "2.3.3",
"prom-client": "11.2.0",
"sequelize": "5.21.5",
"sqlite3": "4.0.9",
"twilio": "^3.57.0",
"yargs": "13.3.0"
},
"devDependencies": {
"@types/bunyan": "1.8.4",
"@types/debug": "^4.1.5",
"@types/dotenv": "^8.2.0",
"@types/express-rate-limit": "^5.0.0",
"nodemon": "1.19.1",
"sequelize-cli": "^5.5.1",
"ts-node": "8.3.0",
"webpack": "4.39.1",
"webpack-cli": "3.3.6"
},
"engines": {
"node": ">=8.13.0"
}
}