-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.79 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "tc-domain-challenge",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build:proto:client:nosql": "node bin/nosql-client",
"build:proto:client": "node bin/nosql-client",
"build:proto:server": "node bin/server",
"build:proto": "node bin/nosql-client && node bin/server",
"build:app": "rimraf dist && tsc -b",
"build": "yarn build:proto:client && yarn build:proto:server && yarn build:app",
"start": "ts-node-dev --respawn --transpile-only src/server.ts"
},
"keywords": [
"Topcoder Domain",
"Challenge"
],
"author": "Rakib Ansary <[email protected]>",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-lambda": "^3.294.0",
"@aws-sdk/util-utf8-node": "^3.259.0",
"@grpc/grpc-js": "^1.7.1",
"@opensearch-project/opensearch": "^2.2.0",
"@topcoder-framework/domain-acl": "0.24.1",
"@topcoder-framework/lib-common": "0.24.1",
"topcoder-proto-registry": "0.2.0",
"@types/uuid": "^9.0.1",
"aws-sdk": "^2.1339.0",
"axios": "^1.2.2",
"dayjs": "^1.11.7",
"dotenv": "^16.0.3",
"elasticsearch": "^16.7.3",
"grpc-server-reflection": "^0.1.5",
"http-aws-es": "^6.0.0",
"lodash": "^4.17.21",
"long": "^5.2.3",
"moment": "^2.29.4",
"source-map-support": "^0.5.21",
"tc-core-library-js": "appirio-tech/tc-core-library-js.git#v2.6.4",
"topcoder-bus-api-wrapper": "topcoder-platform/tc-bus-api-wrapper.git",
"uuid": "^9.0.0",
"xss": "^1.0.14"
},
"volta": {
"node": "18.14.1",
"typescript": "5.2.2",
"yarn": "1.22.19"
},
"devDependencies": {
"@types/elasticsearch": "^5.0.40",
"@types/lodash": "^4.14.191",
"@types/node": "^20.8.0",
"ts-node-dev": "^2.0.0",
"ts-proto": "^1.159.1",
"typescript": "^5.2.2"
}
}