-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.84 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.84 KB
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
{
"name": "ktt-backend",
"license": "GPL-2.0-only",
"version": "0.0.1",
"description": "Serverless backend for Theta Tau Mobile",
"repository": "https://github.com/jtaylorchang/kappa-backend.git",
"author": "Jeff Taylor-Chang <jeff@jefftc.com>",
"dependencies": {
"@middy/core": "^1.0.0-beta.8",
"@middy/do-not-wait-for-empty-event-loop": "^1.0.0-beta.8",
"@middy/http-cors": "^1.0.0-beta.8",
"@middy/http-error-handler": "^1.0.0-beta.8",
"@middy/http-json-body-parser": "^1.0.0-beta.8",
"@middy/http-urlencode-body-parser": "^1.0.0-beta.8",
"@middy/validator": "^1.0.0-beta.8",
"@types/aws-lambda": "^8.10.48",
"bcryptjs": "^2.4.3",
"google-auth-library": "^5.10.1",
"http-errors": "^1.7.3",
"js-optchain": "^2.0.2",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"moment-timezone": "^0.5.28",
"mongodb": "^3.5.3",
"node-fetch": "^2.6.0",
"serverless-stage-manager": "^1.0.5",
"source-map-support": "^0.5.16",
"uuid": "^7.0.2"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"babel-loader": "^8.0.6",
"babel-plugin-source-map-support": "^2.1.1",
"jest": "^25.4.0",
"prettier": "^2.0.2",
"serverless": "^1.67.0",
"serverless-offline": "^6.1.2",
"serverless-plugin-split-stacks": "^1.9.3",
"serverless-webpack": "^5.3.1",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpack-node-externals": "^1.7.2"
},
"scripts": {
"offline": ". ./login.sh && . ./offline.sh && yarn serverless offline start --allowCache",
"deploy": ". ./deploy.sh && yarn sls deploy",
"pretest": "sh pretest.sh",
"test": "echo 'TEST GOES HERE'",
"posttest": "sh posttest.sh"
},
"prettier": {
"trailingComma": "none",
"singleQuote": true,
"printWidth": 120
}
}