-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.89 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
{
"name": "tech-gigs-api",
"version": "1.0.0",
"type": "commonjs",
"engines": {
"node": ">=8.10.0"
},
"description": "",
"private": true,
"main": "index.js",
"scripts": {
"test": "jest --verbose",
"lint": "eslint '**/*.ts'",
"dev": "NODE_ENV=dev nodemon",
"start": "ts-node ./index.ts",
"build": "rm -rf build && tsc --project .",
"deploy": "./deploy.sh"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bunyan": "^1.8.12",
"bunyan-cloudwatch": "^2.2.0",
"dotenv": "^8.2.0",
"jsonwebtoken": "^8.5.1",
"koa": "^2.7.0",
"koa-bunyan-logger": "^2.1.0",
"koa-helmet": "^4.2.0",
"koa-jwt": "^3.6.0",
"koa-logger": "^3.2.1",
"koa-router": "^7.4.0",
"koa-static": "^4.0.3"
},
"devDependencies": {
"@aws-cdk/aws-cloudwatch": "^1.31.0",
"@aws-cdk/aws-elasticbeanstalk": "^1.31.0",
"@aws-cdk/aws-iam": "^1.31.0",
"@aws-cdk/aws-route53": "^1.31.0",
"@aws-cdk/aws-s3": "^1.31.0",
"@aws-cdk/aws-s3-deployment": "^1.31.0",
"@aws-cdk/core": "^1.31.0",
"@types/dotenv": "^8.2.0",
"@types/jest": "^25.2.1",
"@types/koa": "^2.11.3",
"@types/koa-logger": "^3.1.1",
"@types/node": "^13.11.0",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"aws-cdk": "^1.31.0",
"eslint": "^5.13.0",
"eslint-plugin-jest": "^22.3.0",
"eslint-plugin-node": "^11.1.0",
"jest": "^25.2.7",
"nock": "^10.0.6",
"nodemon": "^2.0.2",
"should": "^10.0.0",
"supertest": "^4.0.2",
"supertest-koa-agent": "^0.3.2",
"ts-jest": "^25.3.1",
"typescript": "^3.8.3"
},
"jest": {
"globals": {
"jest": true
},
"testEnvironment": "node",
"testMatch": [
"**/src/**/?(*.)+(spec|test|integration).ts"
],
"transform": {
"^.+\\.ts$": "ts-jest"
}
}
}