-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 2.24 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
{
"name": "hawk.api",
"version": "1.0.22",
"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",
"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"
},
"devDependencies": {
"@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",
"nodemon": "^2.0.2",
"ts-jest": "^26.1.4",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"dependencies": {
"@amplitude/node": "^1.10.0",
"@graphql-tools/merge": "^8.3.1",
"@graphql-tools/schema": "^8.5.1",
"@graphql-tools/utils": "^8.9.0",
"@hawk.so/nodejs": "^3.1.1",
"@hawk.so/types": "^0.1.18",
"@types/amqp-connection-manager": "^2.0.4",
"@types/bson": "^4.0.5",
"@types/debug": "^4.1.5",
"@types/escape-html": "^1.0.0",
"@types/graphql-upload": "^8.0.11",
"@types/jsonwebtoken": "^8.3.5",
"@types/mime-types": "^2.1.0",
"@types/mongodb": "^3.6.20",
"@types/node": "^16.11.46",
"@types/node-fetch": "^2.5.4",
"@types/uuid": "^8.3.4",
"amqp-connection-manager": "^3.1.0",
"amqplib": "^0.5.5",
"apollo-server-express": "^3.10.0",
"argon2": "^0.28.7",
"aws-sdk": "^2.1174.0",
"axios": "^0.27.2",
"body-parser": "^1.19.0",
"bson": "^4.6.5",
"dataloader": "^2.0.0",
"dotenv": "^16.0.1",
"escape-html": "^1.0.3",
"express": "^4.17.1",
"graphql": "^16.5.0",
"graphql-scalars": "^1.17.0",
"graphql-type-json": "^0.3.0",
"graphql-upload": "^13",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"migrate-mongo": "^7.0.1",
"mime-types": "^2.1.25",
"mongodb": "^3.7.3",
"ts-node-dev": "^2.0.0",
"uuid": "^8.3.2"
}
}