-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 3.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "token-liquidity",
"version": "3.0.0",
"description": "BCH SLP Token Liquidity Web App for the Permissionless Software Foundation",
"main": "token-liquidity.js",
"scripts": {
"start": "env-cmd node token-liquidity.js",
"start:temp": "env-cmd ./token-liquidity.sh && npm start",
"test": "env-cmd npm run test:all",
"test:integration": "env-cmd mocha --timeout 15000 test/integration",
"test:temp:unit": "env-cmd mocha -g '#pRetryProcessTx-function' test/unit/biz-logic/",
"test:temp:integration": "env-cmd mocha -g '#contact' test/integration/",
"lint": "standard --env mocha --fix",
"docs": "./node_modules/.bin/apidoc -i src/ -o docs",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"coverage:report": "export TL_ENV=test && nyc --reporter=html mocha --exit --timeout 15000 test/unit/biz-logic/ test/unit/rest-api/ test/e2e/automated/",
"prep-test": "node util/users/delete-all-test-users.js",
"test:all": "export TL_ENV=test && nyc --reporter=text mocha --exit --timeout 15000 test/unit/biz-logic/ test/unit/rest-api/ test/e2e/automated/",
"test:unit:lib": "export TL_ENV=test && mocha --exit --timeout 15000 test/unit/biz-logic/",
"test:unit:rest": "export TL_ENV=test && mocha --exit --timeout 15000 test/unit/rest-api/",
"test:e2e:auto": "export TL_ENV=test && mocha --exit --timeout 15000 test/e2e/automated/"
},
"author": "Chris Troutner <[email protected]>",
"license": "MIT",
"apidoc": {
"title": "token-liquidity",
"url": "localhost:5000"
},
"repository": "Permissionless-Software-Foundation/token-liquidity",
"dependencies": {
"@psf/bch-js": "4.18.4",
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"collect.js": "^4.16.6",
"env-cmd": "^10.1.0",
"glob": "^7.1.6",
"got": "^9.5.1",
"jsonwebtoken": "^8.5.1",
"jwt-bch-lib": "^1.3.0",
"kcors": "^2.2.2",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa-convert": "^2.0.0",
"koa-generic-session": "^2.1.1",
"koa-logger": "^3.2.1",
"koa-mount": "^4.0.0",
"koa-passport": "^4.1.3",
"koa-router": "^10.0.0",
"koa-static": "^5.0.0",
"line-reader": "^0.4.0",
"mongoose": "^5.11.15",
"nodemailer": "^6.4.17",
"p-queue": "^6.2.1",
"p-retry": "^4.2.0",
"passport-local": "^1.0.0",
"request": "^2.85.0",
"request-promise": "^4.2.2",
"shelljs": "^0.8.3",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.0"
},
"devDependencies": {
"ajv": "^5.5.2",
"apidoc": "^0.26.0",
"chai": "^4.3.0",
"coveralls": "^3.1.0",
"eslint": "7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^4.3.8",
"lodash.clonedeep": "^4.5.0",
"mocha": "^8.2.1",
"nock": "^10.0.6",
"nyc": "^15.1.0",
"semantic-release": "^17.4.3",
"sinon": "^9.2.4",
"standard": "^16.0.3"
},
"release": {
"publish": [
{
"path": "@semantic-release/npm",
"npmPublish": false
}
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}