-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.1 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.1 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "topcoder-anticorruption-layer",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build:proto:server": "node bin/server",
"build:proto": "node bin/server",
"build:app": "rimraf dist && tsc -b",
"build": "node bin/server && rimraf dist && tsc -b",
"clean": "rimraf dist",
"start": "ts-node-dev --respawn --transpile-only src/server.ts",
"prepare": "husky install",
"lint": "yarn eslint src --ext ts"
},
"keywords": [
"Topcoder",
"Anticorruption Layer",
"Topcoder Platform",
"Topcoder gRPC Service"
],
"author": "Rakib Ansary <rakibansary@topcoder.com>",
"license": "ISC",
"dependencies": {
"@grpc/grpc-js": "^1.7.1",
"topcoder-proto-registry": "0.2.0",
"@topcoder-framework/client-relational": "0.24.1",
"@topcoder-framework/domain-challenge": "0.24.1",
"@topcoder-framework/lib-common": "0.24.1",
"axios": "^1.3.4",
"dayjs": "^1.11.7",
"decimal.js": "^10.4.3",
"dotenv": "^16.0.3",
"fp-ts": "^2.16.0",
"grpc-server-reflection": "^0.1.5",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"node-cache": "^5.1.2",
"source-map-support": "^0.5.21",
"uuidv4": "^6.2.13"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@commitlint/config-lerna-scopes": "^17.2.1",
"@types/lodash": "^4.14.186",
"@types/node": "20.8.0",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"commitlint": "^17.3.0",
"eslint": "^8.30.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.0",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"prettier-plugin-organize-imports": "^3.2.2",
"ts-node-dev": "^2.0.0",
"ts-proto": "^1.126.1",
"typescript": "^5.2.2"
},
"lint-staged": {
"*.{ts,tsx}": [
"npx prettier --write",
"npx eslint --fix"
],
"*.{json,md,yml}": [
"npx prettier --write"
]
},
"volta": {
"node": "20.8.0",
"yarn": "1.22.19",
"typescript": "5.2.2"
}
}