-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.59 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
{
"name": "serverless-typescript-boilerplate",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"eslint": "eslint --fix ./*.ts ./utils/**/*.ts ./test/**/*.ts",
"eslint:ci": "eslint --fix --format junit --output-file reports/eslint/test-results.xml ./*.ts ./utils/**/*.ts ./test/**/*.ts",
"prettier": "prettier --write ./*.{ts,tsx}",
"test": "mocha --require ts-node/register test/**/*.ts",
"test:ci": "mocha --require ts-node/register --reporter mocha-circleci-reporter --reporter-options mochaFile=reports/mocha/test-results.xml test/**/*.ts"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.64",
"@types/aws-sdk": "^2.7.0",
"@types/boom": "^7.3.0",
"@types/express": "^4.17.8",
"@types/mocha": "^8.0.3",
"@types/node": "^14.14.6",
"@types/webpack": "^4.41.24",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"aws-lambda": "^1.0.6",
"aws-sdk-mock": "^5.1.0",
"aws-serverless-express": "^3.3.8",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"mocha": "^8.2.0",
"mocha-circleci-reporter": "^0.0.3",
"prettier": "^2.1.2",
"serverless": "^1.80.0",
"serverless-offline": "^5.12.1",
"serverless-webpack": "^5.3.5",
"ts-loader": "^8.0.7",
"typescript": "^4.0.5",
"webpack": "^4.44.2",
"webpack-node-externals": "^2.5.2"
},
"dependencies": {
"aws-sdk": "^2.778.0",
"body-parser": "^1.18.3",
"boom": "^7.3.0",
"express": "^4.16.4",
"express-async-handler": "^1.1.4",
"serverless-http": "^2.6.0"
}
}