-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.66 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.66 KB
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
60
{
"name": "nodejs-cloud-run-hello-world",
"version": "0.0.1",
"description": "Hello World application for Cloud Run",
"main": "index.ts",
"type": "module",
"scripts": {
"dev": "pnpm funcky --entry=src/index.ts --dev --path-resolver",
"build": "pnpm funcky --entry=src/index.ts",
"start": "tsc && ts-node-esm src/index.ts",
"lint": "eslint **.js",
"fix": "eslint --fix *.js",
"test": "mocha test/*.test.js --check-leaks --timeout 5000"
},
"author": "Google LLC",
"license": "0BSD",
"engines": {
"node": ">=11.14"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.315.0",
"@aws-sdk/s3-request-presigner": "^3.315.0",
"@prisma/client": "4.13.0",
"axios": "^1.4.0",
"bcrypt": "^5.1.0",
"bson": "^5.2.0",
"express": "^4.18.2",
"funcky": "^0.2.19",
"handlebars": "^4.7.4",
"node-fetch": "^3.3.1",
"quill": "^1.3.7",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@types/compression": "^1.7.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/express-http-proxy": "^1.6.3",
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "^18.15.11",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"eslint": "8.29.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"express-ws": "^5.0.2",
"gaxios": "5.0.2",
"jsonwebtoken": "^9.0.0",
"mocha": "10.1.0",
"prettier": "2.8.1",
"prisma": "4.13.0",
"typescript": "^5.0.4",
"uuid": "^9.0.0"
}
}