-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.16 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.16 KB
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": "github-oauth-tester",
"version": "0.0.1",
"description": "A testing tool for GitHub OAuth Apps",
"main": "dist/index.js",
"repository": "https://github.com/Mattamorphic/github-oauth-tester",
"scripts": {
"prebuild": "eslint \"src/*\" -c .eslintrc.js --fix",
"build": "tsc",
"prestart": "npm run build",
"start": "node .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Mattamorphic <mfmbarber@gmail.com>",
"license": "MIT",
"dependencies": {
"@octokit/rest": "^16.25.1",
"body-parser": "^1.18.3",
"command-line-args": "^5.1.1",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"ngrok": "^3.1.1",
"open": "^6.2.0",
"request": "^2.88.0"
},
"devDependencies": {
"@types/command-line-args": "^5.0.0",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.16.1",
"@types/node": "^12.0.0",
"@types/request": "^2.48.1",
"@typescript-eslint/eslint-plugin": "^1.7.0",
"@typescript-eslint/parser": "^1.7.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-prettier": "^3.0.1",
"prettier": "^1.17.0",
"typescript": "^3.4.5"
}
}