Skip to content

Instantly share code, notes, and snippets.

@arranbartish
Created March 30, 2017 16:50
Show Gist options
  • Save arranbartish/be5cfd7466b201189566f4244ee18203 to your computer and use it in GitHub Desktop.
Save arranbartish/be5cfd7466b201189566f4244ee18203 to your computer and use it in GitHub Desktop.
Serverless package.json
{
"name": "serverless-typescript-demo",
"version": "1.0.0",
"description": "Basic demo mixing Serverless and TypeScript",
"main": "handler.ts",
"scripts": {
"lint": "tslint *.ts",
"test:local": "mocha --compilers ts:ts-node/register,tsx:ts-node/register tests.ts",
"test:remote": ". ./helpers/endpoint.sh; mocha remote/tests.js",
"deploy:cicd": "mkdir .build; serverless deploy --stage cicd | tee .build/deploy.out"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ElizabethGagne/serverless-typescript-demo.git"
},
"author": "Elizabeth Gagne",
"license": "MIT",
"bugs": {
"url": "https://github.com/ElizabethGagne/serverless-typescript-demo/issues"
},
"homepage": "https://github.com/ElizabethGagne/serverless-typescript-demo#readme",
"dependencies": {
"@types/aws-lambda": "0.0.9",
"@types/aws-sdk": "0.0.42",
"@types/es6-promise": "0.0.32",
"aws-lambda": "^0.1.2",
"aws-sdk": "^2.34.0",
"babel": "^6.23.0",
"babel-cli": "^6.24.0",
"bower": "^1.8.0",
"chai": "^3.5.0",
"gulp-babel": "^6.1.2",
"gulp-cli": "^1.2.2",
"json-loader": "^0.5.4",
"karma": "^1.5.0",
"karma-chai": "^0.1.0",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-typescript-preprocessor2": "^1.2.1",
"karma-webpack": "^2.0.3",
"mocha": "^3.2.0",
"phantomjs": "^2.1.7",
"phantomjs-prebuilt": "^2.1.14",
"power-assert": "^1.4.2",
"request": "^2.81.0",
"serverless": "^1.10.1",
"serverless-webpack": "^1.0.0-rc.4",
"sinon": "^2.1.0",
"ts-loader": "^2.0.3",
"ts-node": "^3.0.2",
"tslint": "^5.0.0",
"tslint-config-olo": "^0.1.0",
"typescript": "^2.2.2",
"typings": "^2.1.0",
"uuid": "^3.0.1",
"webpack": "^2.3.2"
},
"devDependencies": {
"aws-lambda": "^0.1.2",
"aws-sdk": "^2.34.0",
"http": "0.0.0",
"https": "^1.0.0",
"json-loader": "^0.5.4",
"power-assert": "^1.4.2",
"sinon": "^2.1.0",
"stream": "0.0.2"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment