-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.08 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
{
"name": "url-shortener",
"version": "0.0.1",
"description": "Serverless webpack example using Typescript",
"main": "build/handler.js",
"scripts": {
"lint": "tslint --project . src/**/*.ts",
"test": "sls offline --exec \"yarn test\""
},
"prettier": {
"semi": false,
"singleQuote": true
},
"dependencies": {
"aws-sdk": "^2.596.0",
"serverless-dynamodb-local": "^0.2.38",
"serverless-offline": "^5.12.1",
"shortid": "^2.2.15"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.17",
"@types/jest": "^24.0.25",
"@types/node": "^13.1.2",
"@types/shortid": "^0.0.29",
"axios": "^0.19.0",
"fork-ts-checker-webpack-plugin": "^3.0.1",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"serverless-plugin-typescript": "^1.1.9",
"ts-loader": "^6.2.1",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^9.0.0",
"typescript": "^3.7.4",
"webpack": "^4.41.5",
"webpack-node-externals": "^1.7.2"
},
"author": "Aleksi Pekkala <[email protected]>",
"license": "MIT"
}