-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.35 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
{
"name": "cloud-run-sharex-custom-uploader",
"version": "1.0.0",
"main": "out/index.js",
"scripts": {
"dev:tsc": "tsc -w",
"dev:server": "nodemon out/index.js",
"dev": "concurrently \"npm run dev:tsc\" \"npm run dev:server\"",
"build": "tsc",
"start": "node out/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emre1791/cloud-run-sharex-custom-uploader.git"
},
"keywords": [],
"author": "Emre Aksoy",
"license": "ISC",
"bugs": {
"url": "https://github.com/emre1791/cloud-run-sharex-custom-uploader/issues"
},
"homepage": "https://github.com/emre1791/cloud-run-sharex-custom-uploader#readme",
"description": "",
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.14",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"concurrently": "^7.6.0",
"eslint": "^8.28.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.5.1",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^2.0.20",
"typescript": "^4.9.3"
},
"dependencies": {
"@google-cloud/secret-manager": "^4.1.4",
"@google-cloud/storage": "^6.7.0",
"body-parser": "^1.20.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1"
}
}