This repository was archived by the owner on Jun 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.33 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.33 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
{
"name": "@hancomeducation/bedrock",
"version": "2.0.2",
"description": "Jungol common backend platform",
"main": "build/module/index.js",
"types": "build/module/index.d.ts",
"type": "module",
"scripts": {
"build": "node esbuild.js",
"deploy": "npm run build && npm publish --access public"
},
"bin": {
"bedrock": "build/runner.js"
},
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/HancomAC/bedrock.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/HancomAC/bedrock/issues"
},
"homepage": "https://github.com/HancomAC/bedrock#readme",
"dependencies": {
"@google-cloud/datastore": "^7.5.1",
"@google-cloud/pubsub": "^3.6.0",
"@google-cloud/storage": "^6.10.1",
"@grpc/grpc-js": "^1.8.14",
"@types/express": "^4.17.17",
"@types/express-ws": "^3.0.1",
"@types/uuid": "^9.0.1",
"algoliasearch": "^4.17.0",
"args-parser": "^1.3.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"esbuild": "^0.17.19",
"express": "^4.18.2",
"express-ws": "^5.0.2",
"helmet": "^7.0.0",
"jsonwebtoken": "^9.0.0",
"morgan": "^1.10.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/node": "^20.2.1",
"typescript": "^5.0.4"
}
}