forked from oslabs-beta/Airfn
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 894 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 894 Bytes
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
{
"name": "lambda9",
"version": "0.0.1",
"description": "Serve, build, and deploy AWS Lambda functions",
"main": "index.js",
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"node-fetch": "^2.6.0",
"querystring": "^0.2.0"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/express": "^4.17.0",
"@types/jest": "^24.0.15",
"@types/node": "^12.0.10",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"typescript": "^3.5.2"
},
"scripts": {
"start": "npm run dev",
"dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/serve/serve.ts",
"prod": "tsc && node ./build/app.js",
"tsc": "tsc",
"test": "jest"
},
"keywords": [
"lambda",
"serverless",
"faas",
"aws"
],
"author": "Bruce Wong, Esther Lee, Jayvee Aspa, Jun Lee",
"license": "MIT"
}