-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.73 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
{
"name": "instamotion",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "tslint -p tsconfig.json -c tslint.json",
"local": "serverless offline",
"deploy": "serverless deploy",
"test": "cross-env NODE_ENV=dev mocha -r ts-node/register tests/*.test.ts --exit",
"coverage": "nyc --reporter lcov npm run test"
},
"pre-commit": [
"lint"
],
"dependencies": {
"aws-sdk": "^2.1078.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"class-validator-jsonschema": "^3.1.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-basic-auth": "^1.2.1",
"helmet": "^5.0.2",
"microframework-w3tec": "^0.6.3",
"mongoose": "^5.9.10",
"morgan": "^1.10.0",
"routing-controllers": "^0.9.0",
"routing-controllers-openapi": "^3.1.0",
"serverless-http": "^2.7.0",
"swagger-ui-express": "^4.3.0",
"typedi": "^0.10.0",
"winston": "^3.6.0"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.51",
"@types/chai": "^4.2.11",
"@types/dotenv-safe": "^8.1.0",
"@types/lambda-tester": "^3.6.0",
"@types/mocha": "^7.0.2",
"@types/mongoose": "^5.7.14",
"@types/sinon": "^9.0.0",
"@types/supertest": "^2.0.8",
"@types/winston": "^2.3.7",
"@types/helmet": "0.0.41",
"@types/morgan": "^1.7.35",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"istanbul": "^0.4.5",
"lambda-tester": "^4.0.1",
"mocha": "^7.1.2",
"nyc": "^15.0.1",
"serverless-offline": "^5.12.1",
"serverless-plugin-typescript": "^1.1.9",
"sinon": "^9.0.2",
"ts-node": "^8.9.1",
"tslint": "^6.1.2",
"tslint-config-airbnb": "^5.11.2",
"typescript": "^4.5.5"
},
"engines": {
"node": "16"
}
}