-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·57 lines (57 loc) · 1.51 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": "openqdev-bot",
"version": "1.0.0",
"description": "OpenQ Bot",
"author": "Flaco <[email protected]>",
"license": "ISC",
"homepage": "https://github.com/FlacoJones/openqdev-bot",
"scripts": {
"build": "tsc",
"start:dev": "GITHUB_BOT_SECRET=a5d5a4d787f816faabc4738588e8d919bd1a41cf80f8e02685f842b0f2bd49c2 DEPLOY_ENV=docker nodemon ./src/index.js",
"start": "node ./src/index.js",
"test": "jest"
},
"dependencies": {
"@apollo/client": "3.7.9",
"@babel/eslint-parser": "7.19.1",
"@octokit/auth": "3.0.3",
"@octokit/auth-app": "3.6.1",
"@octokit/core": "3.6.0",
"@octokit/graphql": "4.8.0",
"@octokit/rest": "18.12.0",
"@typescript-eslint/eslint-plugin": "5.18.0",
"@typescript-eslint/parser": "5.18.0",
"body-parser": "1.20.1",
"cors": "2.8.5",
"cross-fetch": "3.1.5",
"dotenv": "16.0.3",
"eslint": "8.34.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-prettier": "4.0.0",
"ethers": "5.6.2",
"express": "4.17.3",
"graphql-ws": "5.7.0",
"jsonwebtoken": "8.5.1",
"octokit": "1.7.1",
"prettier": "2.6.2",
"react": "17.0.2",
"ws": "8.5.0"
},
"devDependencies": {
"@types/jest": "26.0.24",
"@types/node": "14.18.36",
"@types/ws": "8.5.3",
"chai": "4.3.7",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-prettier": "4.0.0",
"jest": "26.6.3",
"mocha": "10.0.0",
"nock": "13.0.5",
"nodemon": "2.0.20",
"prettier": "2.6.2",
"ts-jest": "26.4.4",
"typescript": "4.1.3"
}
}