-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.11 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
{
"name": "oae-lambdas",
"version": "0.0.1",
"main": "handler.js",
"private": true,
"scripts": {
"test": "mocha --timeout 5000 --require ts-node/register tests/setup.ts tests/**/*.test.ts",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lintfix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"buildtest": "tsc --noEmit",
"offline": "SLS_DEBUG=* sls offline --noTimeout",
"cron": "sls schedule",
"deploy": "NODE_ENV=production sls deploy"
},
"dependencies": {
"@bugsnag/js": "^7.2.1",
"aws-lambda": "^1.0.5",
"aws-sdk": "^2.627.0",
"chrome-aws-lambda": "^5.2.1",
"class-validator": "^0.12.2",
"node-fetch": "^2.6.0",
"pg": "^8.3.0",
"puppeteer-core": "^5.2.1",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.25",
"xlsx": "^0.16.4"
},
"devDependencies": {
"@babel/core": "^7.8.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/preset-env": "^7.8.6",
"@babel/preset-typescript": "^7.8.3",
"@types/aws-lambda": "^8.10.17",
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.2",
"@types/node": "^10.12.18",
"@types/puppeteer": "^3.0.1",
"@types/sinon": "^9.0.4",
"@typescript-eslint/eslint-plugin": "^2.21.0",
"@typescript-eslint/parser": "^2.21.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-module-resolver": "^0.16.0",
"faker": "^4.1.0",
"fork-ts-checker-webpack-plugin": "^3.0.1",
"mocha": "^8.1.1",
"mocha-webpack": "^1.1.0",
"puppeteer": "^5.2.1",
"serverless-dotenv-plugin": "^3.0.0",
"serverless-iam-roles-per-function": "^2.0.2",
"serverless-offline": "^5.12.1",
"serverless-offline-scheduler": "^0.4.2",
"serverless-prune-plugin": "^1.4.2",
"serverless-webpack": "^5.2.0",
"sinon": "^9.0.3",
"ts-loader": "^5.3.3",
"typescript": "^3.2.4",
"typescript-eslint": "0.0.1-alpha.0",
"webpack": "^4.29.0",
"webpack-node-externals": "^1.7.2"
}
}