-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 914 Bytes
/
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": "vercel-cors",
"version": "1.0.0",
"description": "Simple CORS module for vercel serverless functions",
"main": "src/main.js",
"scripts": {
"build": "tsc --build",
"lint": "eslint . --cache",
"lint:fix": "eslint . --cache --fix",
"prepare": "husky install"
},
"keywords": [
"cors",
"vercel",
"simple",
"serverless",
"functions"
],
"author": "diegoulloao",
"license": "MIT",
"devDependencies": {
"husky": "^8.0.1",
"typescript": "^4.8.3",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint": "^8.23.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1"
},
"dependencies": {
"@vercel/node": "^2.5.14"
}
}