-
Notifications
You must be signed in to change notification settings - Fork 2k
/
Copy pathpackage.json
36 lines (36 loc) · 1.12 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
{
"name": "cloudsql-mysql2",
"description": "Node.js MySQL sample for Cloud SQL",
"private": true,
"license": "Apache-2.0",
"author": "Google Inc.",
"repository": {
"type": "git",
"url": "https://github.com/GoogleCloudPlatform/nodejs-docs-samples.git"
},
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"start": "node server/server.js",
"system-test": "c8 mocha -p -j 2 test/server.test.js --timeout=60000 --exit",
"system-test-tcp": "c8 mocha -p -j 2 test/server-unix.test.js --timeout=60000 --exit",
"system-test-unix": "c8 mocha -p -j 2 test/server-unix.test.js --timeout=60000 --exit",
"test": "npm run system-test && npm run system-test-tcp && npm run system-test-unix"
},
"dependencies": {
"@google-cloud/cloud-sql-connector": "^1.0.0",
"@google-cloud/functions-framework": "^3.0.0",
"@google-cloud/logging-winston": "^6.0.0",
"@google-cloud/secret-manager": "^5.0.0",
"express": "^4.17.1",
"mysql2": "^3.3.3",
"pug": "^3.0.0",
"winston": "^3.1.0"
},
"devDependencies": {
"c8": "^8.0.0",
"mocha": "^10.0.0",
"supertest": "^6.0.0"
}
}