-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.44 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.44 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
80
81
82
83
84
85
86
87
88
89
90
{
"name": "koa-auth-server",
"version": "0.0.1",
"description": "OAUTH2 Authentication server",
"homepage": "https://github.com/dividezero/nodejs-dynamo-auth-server",
"author": {
"name": "Hazlan Rozaimi",
"email": "hazlan@gmail.com",
"url": "https://www.hazlanrozaimi.com"
},
"contributors": [
{
"name": "Hazlan Rozaimi",
"email": "hazlan@gmail.com",
"url": "https://www.hazlanrozaimi.com"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dividezero/nodejs-dynamo-auth-server"
},
"bugs": {
"url": "https://github.com/dividezero/nodejs-dynamo-auth-server/issues"
},
"keywords": [
"koa",
"koa2",
"rest",
"restful",
"api",
"oauth2",
"authentication"
],
"engines": {
"node": ">= 8.12.0"
},
"main": "app",
"scripts": {
"start": "node app",
"dev": "NODE_ENV=development nodemon --inspect=9229 --quiet | pino-pretty -c -l -t",
"prod": "NODE_ENV=production node app",
"test": "NODE_ENV=test jest --passWithNoTests",
"test:unit": "npm test -- test/unit",
"test:integration": "npm test -- test/integration",
"test:watch": "npm test -- --watch",
"test:watch:unit": "npm run test:unit -- --watch",
"test:watch:integration": "npm run test:integration -- --watch",
"test:coverage": "npm test -- --coverage",
"test:coverage:unit": "npm run test:unit -- --coverage",
"test:coverage:integration": "npm run test:integration -- --coverage",
"lint": "eslint app test",
"lint:app": "eslint app",
"lint:test": "eslint test"
},
"dependencies": {
"@kasa/koa-logging": "^0.3.0",
"@kasa/koa-request-id": "^2.0.1",
"@koa/cors": "^3.0.0",
"aws-sdk": "^2.503.0",
"crypto-promise": "^2.1.0",
"dotenv": "^8.0.0",
"dynamoose": "^1.10.0",
"elastic-apm-node": "^2.12.1",
"got": "^9.6.0",
"joi": "^14.3.1",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-depsi": "^1.0.1",
"koa-router": "^7.4.0",
"nodemailer": "^6.3.0",
"pino": "^5.12.6",
"swagger-jsdoc": "^3.3.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"codecov": "^3.5.0",
"eslint": "^6.1.0",
"eslint-config-kasa": "^0.5.0",
"husky": "^3.0.0",
"jest": "^24.8.0",
"jest-extended": "^0.11.1",
"jest-junit": "^6.4.0",
"lint-staged": "^9.1.0",
"nodemon": "^1.19.1",
"pino-pretty": "^3.2.0",
"prettier": "^1.18.2",
"supertest": "^4.0.2"
}
}