-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
141 lines (141 loc) · 4.18 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "users-cubed-api-next",
"version": "2.1.0",
"description": "User management system/ CMS API on Lambda + S3.",
"main": "index.js",
"scripts": {
"test": "cross-env NODE_ENV=testing mocha -t 60000 --exit tests/",
"coverage": "cross-env NODE_ENV=testing nyc --reporter=text mocha --timeout 60000 tests/",
"build:proto": "node ./lib/proto/compiler.js",
"upgrade": "ncu -u",
"offline": "serverless offline start -v -s dev -e development",
"deploy": "cross-env NODE_ENV=production serverless deploy -v -s prod -e production",
"remove": "cross-env NODE_ENV=production serverless remove -v -s prod -e production",
"wapid": "web-push generate-vapid-keys"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TalaikisInc/users-cubed-api-next.git"
},
"keywords": [
"cms",
"users",
"user management sytsem",
"AWS Lambda",
"AWS S3",
"protocol buffers"
],
"author": "Tadas Talaikis <info@talaikis.com>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/TalaikisInc/users-cubed-api-next/issues"
},
"homepage": "https://github.com/TalaikisInc/users-cubed-api-next#readme",
"dependencies": {
"@babel/core": "^7.8.3",
"@babel/polyfill": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/register": "^7.8.3",
"@dazn/lambda-powertools-logger": "^1.15.2",
"@dazn/lambda-powertools-middleware-stop-infinite-loop": "^1.15.2",
"aws-sdk": "^2.610.0",
"bluebird": "^3.7.2",
"frenchkiss": "^0.2.1",
"handlebars": "^4.7.2",
"jwt-decode": "^2.2.0",
"legit": "^1.0.7",
"middy": "^0.33.2",
"mock-aws-s3": "^3.0.0",
"protocol-buffers-encodings": "^1.1.0",
"stripe": "^8.7.0",
"validator": "^12.2.0",
"xss-filters": "^1.2.7",
"yup": "^0.28.0"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@commitlint/config-conventional": "^8.3.4",
"@types/bluebird": "^3.5.29",
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"bufferutil": "^4.0.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-asserttype-extra": "^1.2.0",
"chai-http": "^4.3.0",
"chai-json-schema": "^1.5.1",
"chai-uuid": "^1.0.6",
"commitlint": "^8.3.5",
"cross-env": "^7.0.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-json": "^2.0.1",
"eslint-plugin-mocha": "^6.2.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.0.1",
"faker": "^4.1.0",
"git-precommit-checks": "^3.0.0",
"husky": "^4.2.1",
"js-meter": "^1.1.4",
"lint-staged": "^10.0.2",
"mocha": "^7.0.1",
"npm-check-updates": "^4.0.1",
"nyc": "^15.0.0",
"protocol-buffers": "^4.1.0",
"rimraf": "^3.0.0",
"serverless": "^1.61.3",
"serverless-dotenv-plugin": "^2.1.1",
"serverless-iam-roles-per-function": "^2.0.2",
"serverless-offline": "^5.12.1",
"serverless-plugin-log-retention": "^2.0.0",
"sinon": "^8.1.1",
"sinon-chai": "^3.4.0",
"supertest": "^4.0.2",
"typescript": "^3.7.5",
"utf-8-validate": "^5.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"app/**/*.{js,ts,json}": [
"git add .",
"npm run coverage"
]
},
"git-precommit-checks": {
"rules": [
{
"filter": "\\.js$",
"nonBlocking": "true",
"message": "You’ve got leftover `console.log`",
"regex": "console\\.log"
},
{
"message": "You’ve got leftover conflict markers",
"regex": "/^[<>|=]{4,}/m"
},
{
"message": "You have unfinished work",
"nonBlocking": "true",
"regex": "(?:FIXME|TODO)"
}
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}