-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
executable file
·87 lines (87 loc) · 2.82 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "submissions-api",
"version": "1.0.0",
"description": "Topcoder Submissions API",
"main": "app.js",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"create-tables": "node scripts/createTables.js",
"init-db": "node scripts/importData.js",
"create-index": "node scripts/createIndex.js",
"delete-index": "node scripts/deleteIndex.js",
"init-es": "node scripts/loadES.js",
"db-to-es": "node scripts/migrateFromDBToES.js",
"update-to-v5-challengeId": "node scripts/updateToV5ChallengeId.js",
"update-to-v5-challengeId-v2": "node scripts/updateToV5ChallengeIdV2.js",
"test": "mocha test/unit/*.test.js --require test/unit/prepare.js --exit",
"e2e": "mocha test/e2e/*.test.js --require test/e2e/prepare.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 --require test/e2e/prepare.js --exit",
"services:up": "docker-compose -f ./local/docker-compose.yml up -d",
"services:down": "docker-compose -f ./local/docker-compose.yml down",
"services:logs": "docker-compose -f ./local/docker-compose.yml logs",
"local:init": "npm run init-db && npm run init-es"
},
"dependencies": {
"@opensearch-project/opensearch": "^2.11.0",
"amazon-s3-uri": "0.1.1",
"aws-sdk": "^2.265.1",
"axios": "^1.4.0",
"bluebird": "^3.5.1",
"body-parser": "^1.18.3",
"common-errors": "^1.0.4",
"config": "^3.3.9",
"cors": "^2.8.4",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-fileupload": "^1.4.0",
"file-type": "16.5.4",
"get-parameter-names": "^0.3.0",
"http-status": "^1.6.2",
"informixdb": "^2.2.1",
"joi": "^17.9.2",
"lodash": "^4.17.15",
"node-cache": "^5.1.2",
"swagger-ui-express": "^5.0.0",
"tc-bus-api-wrapper": "topcoder-platform/tc-bus-api-wrapper.git#feature/auth0-proxy-server",
"tc-core-library-js": "appirio-tech/tc-core-library-js.git#v2.6.4",
"uuid": "^9.0.0",
"winston": "^3.9.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"aws-sdk-mock": "^4.0.0",
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"co-mocha": "^1.2.2",
"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",
"husky": "^3.0.5",
"mocha": "^5.2.0",
"mocha-prepare": "^0.1.0",
"nock": "^9.4.3",
"nodemon": "^1.17.5",
"nyc": "^12.0.2"
},
"engines": {
"node": "14.21.3"
},
"eslintIgnore": [
"/test/"
],
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"volta": {
"node": "14.21.3",
"yarn": "1.22.19"
}
}