forked from topcoder-platform/submissions-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·75 lines (75 loc) · 2.21 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
{
"name": "submissions-api",
"version": "1.0.0",
"description": "Topcoder Submissions API",
"main": "app.js",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"lint": "standard",
"lint:fix": "standard --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",
"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"
},
"dependencies": {
"amazon-s3-uri": "0.0.3",
"aws-sdk": "^2.265.1",
"bluebird": "^3.5.1",
"body-parser": "^1.18.3",
"co": "^4.6.0",
"common-errors": "^1.0.4",
"config": "^1.26.2",
"cors": "^2.8.4",
"elasticsearch": "^15.1.1",
"express": "^4.15.4",
"express-fileupload": "^0.4.0",
"file-type": "^9.0.0",
"get-parameter-names": "^0.3.0",
"http-aws-es": "^6.0.0",
"http-status": "^1.2.0",
"joi": "^13.4.0",
"lodash": "^4.17.15",
"memwatch-next": "^0.3.0",
"superagent": "^3.8.3",
"swagger-ui-express": "^3.0.10",
"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#feature/auth0-proxy-server",
"uuid": "^3.3.0",
"winston": "^2.4.3",
"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",
"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",
"standard": "^11.0.1"
},
"engines": {
"node": "8.11.x"
},
"standard": {
"env": [
"mocha"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}