-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
71 lines (71 loc) · 2.6 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
{
"name": "hugin-api",
"version": "0.2.0",
"description": "Hugin API is a RESTful API and WebSocket server for the Hugin Messenger service powered by the Kryptokrona Blockchain.",
"main": "server.js",
"scripts": {
"start": "node server.js",
"start_alert": "node server.js & node alert.js",
"dev": "nodemon server.js",
"test": "cross-env NODE_ENV=test mocha tests --recursive --ignore 'tests/k6/**' --timeout 10000 --exit",
"pretest": "cross-env NODE_ENV=test npm run db:reset",
"db:migrate": "npx sequelize-cli db:migrate",
"db:reset": "npx sequelize-cli db:drop && npx sequelize-cli db:create && npx sequelize-cli db:migrate && npx sequelize-cli db:seed:all --seeders-path ./database/seeders",
"db:create:test": "cross-env NODE_ENV=test npx sequelize-cli db:create",
"code-coverage": "npx c8 --check-coverage --lines 70 npm test",
"code-coverage-report": "npx c8 report --temp-directory .c8 -o ./.c8/html_coverage -r html && open ./.c8/html_coverage/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kryptokrona/hugin-api.git"
},
"keywords": [
"kryptokrona",
"hugin"
],
"author": "Kryptokrona Developers",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/kryptokrona/hugin-api/issues"
},
"homepage": "https://github.com/kryptokrona/hugin-api",
"dependencies": {
"@ledgerhq/hw-transport": "^6.27.1",
"cookie-parser": "^1.4.6",
"debug": "^4.3.4",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-rate-limit": "^6.4.0",
"express-session": "^1.17.2",
"fs.promises": "^0.1.2",
"http-errors": "^2.0.0",
"hugin-crypto": "^0.0.2",
"identicon.js": "^2.3.3",
"int-to-rgb": "^1.0.0",
"kryptokrona-wallet-backend-js": "^2.4.2",
"loglevel": "^1.8.0",
"morgan": "^1.10.0",
"perf_hooks": "^0.0.1",
"pg": "^8.7.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.18.0",
"supertest": "^6.2.3",
"swagger-jsdoc": "^6.2.1",
"swagger-ui-express": "^4.4.0",
"ws": "^8.8.0",
"kryptokrona-utils": "^1.3.6",
"node-cron": "^3.0.2",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1"
},
"devDependencies": {
"body-parser": "^1.20.0",
"c8": "^7.11.2",
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"cross-env": "^7.0.3",
"mocha": "^9.2.2",
"nodemon": "^2.0.19",
"sequelize-cli": "^6.5.1"
}
}