-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 2.37 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
{
"name": "rokket-aws-sls-template",
"title": "AWS Serverless Template",
"version": "0.0.0",
"description": "Rokket Labs AWS Serverless Template",
"main": "index.js",
"private": true,
"scripts": {
"db:sync": "sls invoke local --function database-sync",
"start": "nodemon --exec sls offline start --stage local",
"lint": "eslint 'service/**/*.ts'",
"postinstall": "husky install",
"deploy": "sls deploy",
"test": "jest --no-cache"
},
"author": "Rokket Labs <info@rokketlabs.com> (https://rokketlabs.com)",
"contributors": [
"Santiago G. Marín <santiago.marin@rokketlabs.com> (https://github.com/stgogm)",
"Cristóbal Piña <cristobal@rokketlabs.com> (https://github.com/cristobalpina)"
],
"license": "UNLICENSED",
"dependencies": {
"@graphql-tools/load-files": "^6.2.5",
"@graphql-tools/merge": "^6.2.14",
"@typegoose/typegoose": "^9.1.0",
"apollo-server-lambda": "^2.25.1",
"class-validator": "^0.13.1",
"graphql": "^15.5.0",
"mime": "^2.5.2",
"mongoose": "^6.0.9",
"url-slug": "^3.0.2",
"winston": "^3.3.3"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@haftahave/serverless-ses-template": "^3.0.3",
"@types/aws-lambda": "^8.10.77",
"@types/faker": "^5.5.6",
"@types/jest": "^27.0.2",
"@types/mime": "^2.0.3",
"@types/node": "^14.17.3",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"ajv": "^7.0.4",
"aws-sdk-mock": "^5.2.0",
"babel-jest": "^27.0.2",
"email-addresses": "^4.0.0",
"eslint": "^7.32.0",
"eslint-config-rokket-labs": "^0.4.6",
"faker": "^5.3.1",
"glob": "^7.1.7",
"html-minifier": "^4.0.0",
"html-to-text": "^8.0.0",
"husky": "^7.0.2",
"jest": "^27.2.4",
"jsdom": "^16.6.0",
"juice": "^8.0.0",
"lint-staged": "^11.2.0",
"mongodb-memory-server-core": "^6.9.3",
"nodemon": "^2.0.6",
"prettier": "^2.4.1",
"serverless": "^2.46.0",
"serverless-jest-plugin": "^0.3.0",
"serverless-offline": "^7.0.0",
"serverless-plugin-typescript": "^1.1.9",
"serverless-prune-plugin": "^1.4.3",
"ts-jest": "^27.0.5",
"ts-node": "^10.0.0",
"typescript": "^4.4.3"
},
"lint-staged": {
"*.{ts,js}": [
"prettier --write",
"eslint --fix"
]
}
}