-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.64 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.64 KB
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
{
"name": "hawk.api",
"version": "1.0.7",
"main": "index.ts",
"license": "UNLICENSED",
"scripts": {
"dev": "ts-node-dev --no-notify index.ts",
"start": "node index.ts",
"lint": "eslint -c ./.eslintrc.js src/ --ext .ts,.js --fix",
"lint-test": "eslint -c ./.eslintrc.js src/ --ext .ts,.js",
"dev:up": "docker-compose -f docker-compose.dev.yml up -d",
"dev:down": "docker-compose -f docker-compose.dev.yml down",
"build": "tsc && yarn copy-email-templates",
"copy-email-templates": "copyfiles src/email/templates/*/*.txt build",
"migrations:create": "docker-compose exec api yarn migrate-mongo create",
"migrations:up": "docker-compose exec api yarn migrate-mongo up",
"migrations:down": "docker-compose exec api yarn migrate-mongo down",
"test": "jest --coverage",
"test:integration": "docker-compose -f docker-compose.test.yml up --exit-code-from tests tests"
},
"devDependencies": {
"@shelf/jest-mongodb": "^1.2.2",
"@types/jest": "^26.0.8",
"eslint": "^6.7.2",
"eslint-config-codex": "1.2.4",
"eslint-plugin-import": "^2.19.1",
"jest": "^26.2.2",
"mongodb-memory-server": "^6.6.1",
"nodemon": "^2.0.2",
"ts-jest": "^26.1.4",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
},
"dependencies": {
"@hawk.so/nodejs": "^3.1.1",
"@hawk.so/types": "^0.1.18",
"@types/amqp-connection-manager": "^2.0.4",
"@types/debug": "^4.1.5",
"@types/escape-html": "^1.0.0",
"@types/jsonwebtoken": "^8.3.5",
"@types/mime-types": "^2.1.0",
"@types/mongodb": "^3.3.13",
"@types/node": "^14.0.13",
"@types/node-fetch": "^2.5.4",
"@types/uuid": "^3.4.6",
"amqp-connection-manager": "^3.1.0",
"amqplib": "^0.5.5",
"apollo-server-express": "^2.14.2",
"argon2": "^0.26.2",
"axios": "^0.21.2",
"body-parser": "^1.19.0",
"cloudpayments": "^5.0.4",
"codex-accounting-sdk": "https://github.com/codex-team/codex-accounting-sdk/",
"copyfiles": "^2.1.1",
"dataloader": "^2.0.0",
"dotenv": "^8.2.0",
"escape-html": "^1.0.3",
"express": "^4.17.1",
"graphql": "^14.5.8",
"graphql-iso-date": "^3.6.1",
"graphql-list-fields": "^2.0.2",
"graphql-scalars": "^1.2.7",
"graphql-type-json": "^0.3.0",
"graphql-upload": "^9.0.0",
"graphql-voyager": "^1.0.0-rc.31",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"migrate-mongo": "^7.0.1",
"mime-types": "^2.1.25",
"mongodb": "^3.4.0",
"mustache": "^3.0.1",
"nodemailer": "^6.4.2",
"passport": "^0.4.1",
"passport-github": "^1.1.0",
"passport-jwt": "^4.0.0",
"ts-node-dev": "^1.0.0-pre.44",
"uuid": "^3.3.3"
}
}