-
-
Notifications
You must be signed in to change notification settings - Fork 100
/
package.json
57 lines (57 loc) · 1.36 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
{
"name": "vercel-action",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/amondnet/vercel-action"
},
"author": {
"name": "Minsu Lee",
"email": "[email protected]",
"url": "https://amond.dev"
},
"version": "25.2.0",
"main": "index.js",
"scripts": {
"lint": "eslint index.js",
"start": "node ./index.js",
"package": "ncc build index.js -o dist",
"test": "jest",
"format": "prettier --write index.js",
"format-check": "prettier --check index.js",
"all": "npm run format && npm run lint && npm run package && npm test"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.0.3",
"@actions/github": "^2.1.1",
"axios": "^1.6.8",
"common-tags": "^1.8.0",
"vercel": "25.1.0",
"@octokit/webhooks": "latest"
},
"devDependencies": {
"@vercel/ncc": "^0.36.0",
"prettier": "^2.8.3",
"eslint": "^8.2.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.4.0"
},
"engines": {
"node": "v20"
},
"keywords": [
"GitHub",
"Actions",
"Vercel",
"Zeit",
"Now"
]
}