-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
83 lines (83 loc) · 2.46 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
80
81
82
83
{
"name": "sls-api",
"version": "1.0.0",
"repository": "git@github.com:brokalys/sls-api.git",
"author": "Matiss Janis Aboltins <matiss@brokalys.com>",
"license": "MIT",
"scripts": {
"start": "serverless offline start",
"build": "serverless package",
"lint": "eslint .",
"test": "yarn test:unit && yarn test:integration",
"test:unit": "jest",
"test:integration": "jest -c jest.config.integration.js --forceExit",
"deploy": "serverless deploy --stage staging",
"deploy:ci": "serverless deploy --conceal --stage prod",
"prepare": "husky install"
},
"dependencies": {
"@brokalys/address-normalization": "^1.0.0",
"@brokalys/location-json-schemas": "^1.2.0",
"@bugsnag/js": "^7.22.3",
"@bugsnag/plugin-aws-lambda": "^7.22.3",
"@graphql-tools/schema": "^8.3.1",
"@graphql-tools/utils": "^8.6.1",
"apollo-server-lambda": "^3.6.1",
"apollo-tracing": "^0.15.0",
"area-polygon": "^1.0.1",
"dataloader": "^2.0.0",
"datasource-sql": "^2.0.1",
"distance-to-polygon": "^2.0.2",
"geojson-validation": "^1.0.1",
"graphql": "^16.2.0",
"graphql-fields": "^2.0.3",
"joi": "^17.1.1",
"knex": "^2.0.0",
"knex-serverless-mysql": "^1.1.0",
"moment": "^2.23.0",
"moment-range": "^4.0.1",
"mysql": "^2.18.1",
"numbers": "^0.7.0",
"point-in-polygon": "^1.0.1",
"serverless-mysql": "^1.5.5"
},
"devDependencies": {
"@aws-sdk/client-api-gateway": "^3.496.0",
"@aws-sdk/client-cloudwatch": "^3.496.0",
"@aws-sdk/client-sns": "^3.496.0",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.4.3",
"apollo-server-testing": "^2.3.1",
"babel-jest": "^27.4.5",
"babel-loader": "^8.0.4",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^8.56.0",
"eslint-plugin-prettier": "^5.1.3",
"graphql-tag": "^2.10.0",
"husky": "^8.0.1",
"jest": "^27.4.5",
"jest-transform-graphql": "^2.1.0",
"lint-staged": "^12.1.4",
"mockdate": "^3.0.2",
"prettier": "^3.2.4",
"serverless": "^3.38.0",
"serverless-domain-manager": "^6.0.3",
"serverless-layers": "^2.7.0",
"serverless-offline": "8.5.0",
"serverless-plugin-aws-alerts": "^1.7.5",
"serverless-webpack": "^5.13.0",
"sqlite3": "^5.0.2",
"webpack": "^5.11.1",
"webpack-node-externals": "^3.0.0"
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "cz-emoji"
}
}
}