-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.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
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "pr-finder",
"displayName": "pr-finder",
"publisher": "barclayd",
"description": "Automatically find new PRs to review in the repos you care about",
"repository": {
"type": "git",
"url": "https://github.com/barclayd/pr-finder"
},
"icon": "media/icon.png",
"version": "1.0.8",
"engines": {
"vscode": "^1.52.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onView:pr-finder-sidebar",
"onCommand:pr-finder.authenticate",
"onCommand:pr-finder.refresh"
],
"api": {
"production": "https://r997n84ck8.execute-api.eu-west-2.amazonaws.com/production"
},
"main": "./dist/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "pr-finder-sidebar-view",
"title": "PR Finder",
"icon": "media/file-code.svg"
}
]
},
"views": {
"pr-finder-sidebar-view": [
{
"type": "webview",
"id": "pr-finder-sidebar",
"name": "PR Finder",
"icon": "media/file-code.svg",
"contextualTitle": "PR Finder"
}
]
},
"commands": [
{
"command": "pr-finder.authenticate",
"category": "PRFinder",
"title": "Authenticate"
},
{
"command": "pr-finder.refresh",
"category": "PRFinder",
"title": "Refresh"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "rollup -c && webpack --mode production",
"watch": "concurrently \"rollup -c -w\" \"webpack --mode development --watch\"",
"pretest": "npm run test-compile && npm run lint",
"test": "node ./out/test/runTest.js",
"lint": "eslint '*/**/*.{js,ts,tsx,md}' --fix",
"prettier": "prettier --loglevel warn --write '**/*.{js,json,md,ts}'",
"generate:api:types": "graphql-codegen --config codegen.yml"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@graphql-codegen/cli": "^1.20.0",
"@graphql-codegen/typescript": "^1.20.0",
"@graphql-codegen/typescript-graphql-request": "^3.0.0",
"@graphql-codegen/typescript-operations": "^1.17.13",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"@rollup/plugin-replace": "^2.3.4",
"@rollup/plugin-typescript": "^8.1.0",
"@types/glob": "^7.1.3",
"@types/lodash": "^4.14.168",
"@types/mocha": "^8.0.4",
"@types/node": "^12.11.7",
"@types/polka": "^0.5.2",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/vscode": "^1.52.0",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"concurrently": "^5.3.0",
"eslint": "^7.15.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"glob": "^7.1.6",
"lodash": "^4.17.20",
"mocha": "^8.1.3",
"polka": "^0.5.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"ts-loader": "^8.0.11",
"typescript": "^4.1.2",
"vscode-test": "^1.4.1",
"webpack": "^5.27.1",
"webpack-cli": "^4.5.0"
},
"dependencies": {
"axios": "^0.21.1",
"downshift": "^6.0.11",
"graphql": "^15.4.0",
"graphql-request": "^3.4.0",
"react-query": "^3.5.11"
}
}