-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.42 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
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "shallot",
"version": "1.2.4",
"description": "A robust middleware framework for Serverless REST APIs",
"keywords": [
"middleware",
"aws",
"serverless",
"aws-lambda",
"lambda",
"typescript",
"middy"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/ShallotJS/shallot.git",
"author": "Bailey Tincher <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"build": "rm -rf dist && webpack",
"test": "jest",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@azure/functions": "^1.2.3",
"@types/aws-lambda": "^8.10.76",
"@types/http-errors": "^1.8.0",
"@types/jest": "^26.0.23",
"@types/node": "^15.0.1",
"@types/webpack": "^5.28.0",
"@types/webpack-node-externals": "^2.5.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"ts-jest": "^26.5.5",
"ts-loader": "^9.1.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
"webpack": "^5.36.1",
"webpack-cli": "^4.6.0",
"webpack-node-externals": "^3.0.0",
"yarn": "^1.22.10",
"yarn-upgrade-all": "^0.5.4"
},
"dependencies": {}
}