-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.06 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
{
"name": "serverless-typescript",
"version": "0.0.5",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "[email protected]:fredericbarthelet/serverless-typescript.git",
"author": "Frédéric Barthelet <[email protected]>",
"license": "MIT",
"scripts": {
"watch": "tsc --watch",
"build": "tsc",
"lint": "eslint . --ext .js,.ts",
"lint:fix": "eslint . --ext .js,.ts --fix",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@types/aws-lambda": "^8.10.47",
"lodash": "^4.17.15",
"typescript-json-schema": "^0.42.0"
},
"devDependencies": {
"@types/jest": "^25.1.4",
"@types/lodash": "^4.14.149",
"@types/node": "^13.9.1",
"@types/serverless": "^1.18.6",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3"
}
}