-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 2.01 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
{
"name": "mattermost-app-google-drive",
"version": "0.1.1",
"description": "Connect with Google service through the Mattermost platform to receive comments from Google Drive files",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\"",
"clean": "rm -rf dist dist-ts node_modules",
"build": "tsc -p .",
"start": "tsc -p . && cp -r src/locales dist-ts/ && node dist-ts/index.js",
"dev": "ts-node-dev src/index.ts",
"lint": "eslint --ignore-pattern node_modules --ignore-pattern dist-ts --ignore-pattern dist --ext ts . --quiet --cache",
"fix": "eslint --ignore-pattern node_modules --ignore-pattern dist-ts --ignore-pattern dist --ext ts . --quiet --fix --cache",
"check-types": "tsc -p . --skipLibCheck"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:mattermost/mattermost-app-google-drive.git"
},
"homepage": "https://github.com/mattermost/mattermost-app-google-drive#readme",
"dependencies": {
"@mattermost/types": "^7.4.0",
"axios": "^0.27.2",
"blob": "^0.1.0",
"body-parser": "^1.20.0",
"date-fns": "^2.28.0",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"googleapis": "^105.0.0",
"i18n": "^0.15.1",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"morgan": "^1.10.0",
"query-string": "^7.1.1",
"request": "^2.88.2",
"serverless-http": "^3.0.3",
"stream": "^0.0.2",
"uuid": "^8.3.2",
"winston": "^3.8.2",
"zod": "^3.20.2"
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.13",
"@types/i18n": "^0.13.4",
"@types/lodash": "^4.14.182",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.31",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"eslint": "^8.29.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.6.4"
}
}