-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
40 lines (40 loc) · 997 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
38
39
40
{
"name": "emojifier-bot",
"description": "A simple GitHub App to emojify comments on command.",
"main": "lib/server.js",
"scripts": {
"start": "node lib/server.js",
"setup": "cp config.json.example config.json"
},
"dependencies": {
"@octokit/auth": "^2.0.0",
"@octokit/graphql": "^4.3.1",
"@octokit/webhooks": "^7.4.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"fs": "0.0.1-security",
"js-yaml": "^3.13.1",
"moji-translate": "^1.0.8",
"path": "^0.12.7",
"smee-client": "^1.1.0"
},
"engines": {
"node": "12.x"
},
"repository": {
"url": "https://github.com/githubsatelliteworkshops/apps-with-graphql"
},
"license": "MIT",
"keywords": [
"node",
"express"
],
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1"
}
}