-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
41 lines (41 loc) · 1.17 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
{
"name": "selenium",
"version": "1.0.0",
"description": "boilerplate for gcloud functions",
"main": "build/main.js",
"watch": {
"server": "build/*.js"
},
"scripts": {
"start": "run-p watch-server watch-tsc",
"watch-server": "npm-watch server",
"watch-tsc": "tsc --watch",
"server": "GOOGLE_APPLICATION_CREDENTIALS=credentials.json functions-framework --target=default",
"build": "rm -rf build && tsc",
"deploy": "gcloud functions deploy selenium --runtime nodejs10 --entry-point default --trigger-http --memory=2048MB --timeout=540s",
"release": "npm run build && npm run deploy"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"chromedriver": "^78.0.1",
"chromium-version": "^78.0.0",
"fs-extra": "^8.1.0",
"lodash": "4.17.15",
"moment": "^2.24.0",
"selenium-webdriver": "^4.0.0-alpha.5"
},
"devDependencies": {
"@google-cloud/functions-framework": "1.3.2",
"@types/express": "4.17.2",
"@types/lodash": "4.14.144",
"@types/fs-extra": "^8.0.1",
"@types/moment": "^2.13.0",
"@types/selenium-webdriver": "^4.0.5",
"@types/node": "12.12.5",
"npm-run-all": "4.1.5",
"npm-watch": "0.6.0",
"typescript": "3.6.4"
}
}