-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
executable file
·62 lines (62 loc) · 1.72 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
60
61
62
{
"name": "tc-submission-api-event-processor",
"version": "1.0.0",
"description": "Topcoder Submission API - Event Processor",
"main": "src/app.js",
"scripts": {
"start": "node src/app.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"mock-submission-api": "node mock-submission-api/api.js",
"test": "mocha test/unit/*.test.js --require test/unit/prepare.js --exit",
"e2e": "mocha test/e2e/*.test.js --exit",
"cov": "nyc --reporter=html --reporter=text mocha test/unit/*.test.js --require test/unit/prepare.js --exit",
"cov-e2e": "nyc --reporter=html --reporter=text mocha test/e2e/*.test.js --exit"
},
"author": "TCSCODER",
"license": "MIT",
"devDependencies": {
"body-parser": "^1.20.2",
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"cors": "^2.8.5",
"eslint": "^8.0.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"express": "^4.18.2",
"mocha": "^5.2.0",
"mocha-prepare": "^0.1.0",
"nock": "^9.6.1",
"nyc": "^12.0.2",
"should": "^13.2.3"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.379.1",
"amazon-s3-uri": "^0.1.1",
"axios": "^1.4.0",
"bluebird": "^3.7.2",
"config": "^3.3.9",
"get-parameter-names": "^0.3.0",
"joi": "^17.9.2",
"lodash": "^4.17.21",
"no-kafka": "^3.4.3",
"tc-core-library-js": "appirio-tech/tc-core-library-js.git#v2.6",
"topcoder-healthcheck-dropin": "^1.0.3",
"uuid": "^9.0.0",
"winston": "^3.10.0"
},
"engines": {
"node": "18.x"
},
"standard": {
"env": [
"mocha"
]
},
"volta": {
"node": "18.16.1",
"yarn": "1.22.19"
}
}