This repository has been archived by the owner on Feb 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
73 lines (73 loc) · 2.02 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
65
66
67
68
69
70
71
72
73
{
"name": "auto-merge-eip",
"version": "1.0.0",
"description": "auto merge eip",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test jest",
"build": "npx tsc --p ./tsconfig.build.json ",
"watch": "npx tsc --watch --p ./tsconfig.build.json",
"it": "NODE_ENV=development node -r dotenv/config build/src/index.js",
"mock": "NODE_ENV=MOCK node -r dotenv/config build/src/index.js",
"prettier-changed": "prettier --write",
"prettier:all": "prettier --write src assets __tests__"
},
"author": "",
"license": "CC0-1.0",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/github": "^5.0.0",
"@octokit/plugin-retry": "^3.0.7",
"@octokit/rest": "^18.10.0",
"@types/faker": "^5.5.7",
"@types/lodash": "^4.14.173",
"@types/nock": "^11.1.0",
"@types/underscore": "^1.11.4",
"depcheck": "^1.4.2",
"dotenv": "^10.0.0",
"email-addresses": "^5.0.0",
"faker": "^5.5.3",
"front-matter": "4.0.2",
"http-status": "^1.5.0",
"lodash": "^4.17.21",
"nock": "^13.1.1",
"prettier": "^2.4.1",
"tsconfig-paths-jest": "^0.0.1",
"type-fest": "^2.5.4",
"underscore": "^1.13.2"
},
"devDependencies": {
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.13.0",
"@octokit/types": "^6.28.1",
"@types/jest": "^28.1.6",
"@types/node": "^18.7.1",
"@types/node-fetch": "^3.0.3",
"@typescript-eslint/parser": "^4.31.1",
"eslint": "^7.32.0",
"husky": "^7.0.2",
"jest": "^27.2.0",
"mocked-env": "^1.3.5",
"module-alias": "^2.2.2",
"pretty-quick": "^3.1.1",
"typescript": "^4.4.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --changed"
}
},
"_moduleAliases": {
"#": "build/src/modules",
"src": "build/src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alita-moore/EIP-Bot.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/alita-moore/EIP-Bot/issues"
},
"homepage": "https://github.com/alita-moore/EIP-Bot#readme"
}