forked from GoogleCloudPlatform/nodejs-docs-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 968 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 968 Bytes
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
{
"name": "appengine-websockets",
"description": "Node.js websockets sample for Google App Engine",
"version": "0.0.1",
"private": true,
"license": "Apache Version 2.0",
"author": "Google Inc.",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"deploy": "gcloud app deploy",
"start": "node app.js",
"lint": "eslint .",
"fix": "eslint --fix .",
"test": "mocha --exit test/*.test.js",
"e2e-test": "samples test deploy"
},
"dependencies": {
"express": "^4.15.4",
"pug": "^2.0.3",
"socket.io": "^2.2.0",
"supertest": "^4.0.2"
},
"devDependencies": {
"eslint": "^6.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.0.0",
"mocha": "^7.0.0",
"puppeteer": "^2.0.0"
},
"cloud-repo-tools": {
"test": {
"app": {
"msg": "messages"
}
},
"requiresKeyFile": true,
"requiresProjectId": true
}
}