-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1 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
{
"name": "aws-nodejs-typescript",
"version": "1.0.0",
"description": "Serverless webpack example using Typescript",
"main": "handler.js",
"scripts": {
"clean": "rimraf ./dist",
"build": "rimraf ./dist && tsc",
"test": "mocha --reporter spec --compilers ts:ts-node/register 'src/test/**/*.test.ts'",
"deploy": "serverless deploy",
"lint": "tslint \"src/**/*.ts\" --force"
},
"dependencies": {
"aws-sdk": "^2.192.0",
"axios": "^0.17.1"
},
"devDependencies": {
"@types/aws-lambda": "0.0.31",
"@types/aws-sdk": "^2.7.0",
"@types/axios": "^0.14.0",
"@types/chai": "^4.1.2",
"@types/es6-promise": "^3.3.0",
"@types/mocha": "^2.2.48",
"@types/node": "^8.0.57",
"chai": "^4.1.2",
"codelyzer": "^4.1.0",
"mocha": "^5.0.0",
"rimraf": "^2.6.2",
"ts-node": "^4.1.0",
"tslint": "^5.9.1",
"typescript": "^2.7.1"
},
"author": "The serverless webpack authors (https://github.com/elastic-coders/serverless-webpack)",
"license": "MIT"
}