-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.13 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": "lambda-ts-serverless-starter",
"version": "1.0.0",
"description": "lambda-ts-serverless-starter",
"main": "index.js",
"scripts": {
"lint": "tslint -p tsconfig.json -c tslint.json --fix",
"local": "serverless offline",
"deploy": "serverless deploy --stage dev --region eu-west-1",
"test": "cross-env NODE_ENV=dev mocha -r ts-node/register tests/**/*.test.ts --exclude tests/get-some-stuff-from-api.test.ts --exit",
"coverage": "nyc --reporter lcov npm run test",
"test:app": "ts-node node_modules/jasmine/bin/jasmine",
"docs": "typedoc --out docs app"
},
"pre-commit": [
"lint"
],
"dependencies": {
"aws-sdk": "^2.705.0",
"cross-fetch": "^3.0.5",
"dotenv": "^8.2.0",
"reflect-metadata": "^0.1.13",
"tsyringe": "^4.3.0",
"uuid": "^8.2.0"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.51",
"@types/aws-sdk": "^2.7.0",
"@types/chai": "^4.2.11",
"@types/dotenv-safe": "^8.1.0",
"@types/lambda-tester": "^3.6.0",
"@types/mocha": "^7.0.2",
"@types/sinon": "^9.0.0",
"@types/supertest": "^2.0.8",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"husky": "^4.2.5",
"istanbul": "^0.4.5",
"lambda-tester": "^4.0.1",
"mocha": "^7.1.2",
"nyc": "^15.0.1",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"serverless-offline": "^5.12.1",
"serverless-plugin-typescript": "^1.1.9",
"serverless-sam": "^0.2.0",
"sinon": "^9.0.2",
"ts-node": "^8.9.1",
"tslint": "^6.1.2",
"tslint-config-airbnb": "^5.11.2",
"typedoc": "^0.16.11",
"typescript": "^3.9.7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/michaeldoye/lambda-ts-serverless-starter.git"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && npm run test"
}
},
"keywords": [
"Nodejs",
"TypeScript",
"ServerLess",
"MongoDB Atlas",
"AWS Lambda"
],
"author": "May",
"license": "ISC",
"bugs": {
"url": "https://github.com/michaeldoye/lambda-ts-serverless-starter/issues"
},
"homepage": "https://github.com/michaeldoye/lambda-ts-serverless-starter"
}