-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.29 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
{
"name": "deploy-config",
"scripts": {
"prepublish": "yarn build && yarn package",
"runmain": "node ./dist/index.js",
"build": "tsc",
"package": "ncc build dist/index.js --source-map",
"deploy-config:build": "yarn build",
"build:watch": "tsc -w",
"lint": "eslint --ext ts,tsx . --cache"
},
"devDependencies": {
"@dhi-gras/eslint-config-ts": "^2.0.2",
"@octokit/webhooks-definitions": "^3.67.3",
"@types/child-process-promise": "^2",
"@types/node": "^15.12.3",
"@types/util.promisify": "^1.0.4",
"@types/watch": "^1.0.1",
"@types/yaml": "^1.9.7",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"@vercel/ncc": "^0.29.0",
"@yarnpkg/sdks": "^2.4.1-rc.4",
"eslint": "^7.31.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-json": "^3.0.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-radar": "^0.2.1",
"eslint-plugin-react": "^7.24.0",
"prettier": "^2.3.2",
"typescript": "^4.3.5"
},
"dependencies": {
"@actions/core": "^1.4.0",
"@actions/github": "^5.0.0",
"chalk": "4.1.2",
"child-process-promise": "^2.2.1",
"date-fns": "^2.23.0",
"eslint-import-resolver-typescript": "^2.4.0",
"ora": "~5.4.1",
"yaml": "^1.10.2"
}
}