-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.65 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
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@shallot/http-cors",
"version": "1.1.0",
"description": "CORS headers suppport for REST APIs",
"keywords": [
"typescript",
"CORS",
"REST",
"shallot",
"middleware"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/ShallotJS/shallot-http-cors.git",
"author": "Bailey Tincher <bailey.tincher@btin.io>",
"license": "MIT",
"private": false,
"scripts": {
"build": "rm -rf dist && webpack",
"test": "jest",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@shallot/aws": "^1.0.6",
"@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.1",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-jest": "^24.3.4",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"prettier": "https://github.com/prettier/prettier",
"ts-jest": "^26.5.5",
"ts-loader": "^9.1.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.3",
"webpack": "^5.36.1",
"webpack-cli": "^4.6.0",
"webpack-node-externals": "^3.0.0",
"yarn": "^1.22.10"
},
"dependencies": {
"http-errors": "^1.8.0"
},
"lint-staged": {
"**/*.ts": [
"eslint --ext .ts,.js --fix"
],
"**/*.js": [
"eslint --ext .ts,.js --fix"
],
"*": [
"prettier --no-error-on-unmatched-pattern --write"
]
}
}