forked from poetapp/frost-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
128 lines (128 loc) · 4.02 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "frost-api",
"version": "1.0.0",
"description": "Po.et's API layer for publishers",
"main": "index.js",
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"lint": "tslint -p ./tsconfig.json",
"lint:fix": "tslint -p ./tsconfig.json --fix",
"test:unit": "ts-node -r tsconfig-paths/register --files tests/unit/index.ts",
"test:integration": "TS_NODE_FILES=true mocha --timeout 200000 --exit --require ts-node/register -r tsconfig-paths/register ./test/Integration/**/*.ts",
"test:integration:riteway": "ts-node -r tsconfig-paths/register --files ./tests/integration/index.ts",
"coverage": "npm run coverage:unit && npm run coverage:integration && npm run coverage:integration:riteway",
"coverage:unit": "nyc --report-dir ./.coverage-unit npm run test:unit",
"coverage:integration": "nyc --report-dir ./.coverage-integration npm run test:integration",
"coverage:integration:riteway": "nyc --report-dir ./.coverage-integration-riteway npm run test:integration:riteway",
"start": "node dist/src",
"start:watch": "TS_NODE_FILES=true nodemon --watch src -L --exec 'ts-node --inspect=0.0.0.0:5858 -r tsconfig-paths/register --cache-directory .tscache' ./src/index.ts",
"precommit": "lint-staged",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once --pro",
"migrate-issuer": "node dist/src/scripts/issuer.js"
},
"lint-staged": {
"*.ts": [
"npm run lint",
"git add"
]
},
"release": {
"verifyConditions": [
"@semantic-release/github"
],
"prepare": [
"@semantic-release/npm"
],
"publish": [
"@semantic-release/github"
],
"npmPublish": false
},
"repository": {
"type": "git",
"url": "https://github.com/poetapp/frost-api.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/poetapp/frost-api/issues"
},
"dependencies": {
"@paralleldrive/feature-toggles": "1.0.3",
"@po.et/poet-js": "5.1.17",
"async-ratelimiter": "1.1.2",
"bitcoinjs-lib": "4.0.2",
"body-parser": "1.18.3",
"console.table": "0.10.0",
"dotenv": "6.2.0",
"form-data": "2.3.3",
"ioredis": "4.3.0",
"isomorphic-fetch": "2.2.1",
"joi": "14.1.1",
"joi-password-complexity": "2.0.1",
"jsonwebtoken": "8.4.0",
"koa": "2.6.2",
"koa-bodyparser": "4.2.1",
"koa-helmet": "4.0.0",
"koa-router": "7.4.0",
"koa2-cors": "2.0.6",
"mongoose": "5.3.16",
"node-fetch": "2.3.0",
"node-vault": "0.9.5",
"nodemailer": "4.7.0",
"nodemailer-mandrill-transport": "1.2.0",
"pino": "5.10.1",
"pino-pretty": "2.5.0",
"protobufjs": "6.8.8",
"ramda": "0.26.1",
"secure-password": "3.1.0",
"string-to-stream": "1.1.1"
},
"devDependencies": {
"@po.et/frost-client": "2.1.0",
"@po.et/tslint-rules": "2.2.0",
"@types/bitcoinjs-lib": "4.0.0",
"@types/chai": "4.1.7",
"@types/cheerio": "0.22.10",
"@types/form-data": "2.2.1",
"@types/handlebars": "4.0.39",
"@types/ioredis": "4.0.4",
"@types/isomorphic-fetch": "0.0.34",
"@types/joi": "14.0.1",
"@types/jsonwebtoken": "8.3.0",
"@types/koa": "2.0.47",
"@types/koa-bodyparser": "5.0.2",
"@types/koa-helmet": "3.1.2",
"@types/koa-router": "7.0.35",
"@types/mocha": "5.2.5",
"@types/mongodb": "3.1.17",
"@types/mongoose": "5.3.5",
"@types/node": "10.12.15",
"@types/node-fetch": "2.1.4",
"@types/node-vault": "0.5.3",
"@types/pino": "5.8.3",
"@types/sinon": "7.0.0",
"chai": "4.2.0",
"cheerio": "1.0.0-rc.2",
"husky": "1.2.1",
"lint-staged": "7.3.0",
"maildev": "1.0.0-rc3",
"mailparser": "2.4.3",
"mocha": "5.2.0",
"nock": "10.0.4",
"nodemon": "1.18.8",
"nyc": "github:poetapp/nyc#fbc2ed1",
"riteway": "4.0.1",
"semantic-release": "15.12.5",
"sinon": "7.2.2",
"travis-deploy-once": "5.0.10",
"ts-node": "7.0.1",
"tsconfig-paths": "3.7.0",
"tslint": "5.11.0",
"typescript": "3.2.2"
},
"publishConfig": {
"access": "restricted"
}
}