-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
46 lines (46 loc) · 1.08 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
{
"name": "topcoder-submission-review-app-api",
"version": "1.0.0",
"description": "TopCoder Submission Review APP API",
"main": "app.js",
"scripts": {
"start": "node app.js",
"lint": "standard",
"lint:fix": "standard --fix"
},
"author": "TCSCODER",
"license": "none",
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.2.1",
"mocha": "^6.0.2",
"mocha-prepare": "^0.1.0",
"nock": "^10.0.6",
"nyc": "^13.3.0",
"standard": "^12.0.1"
},
"dependencies": {
"bluebird": "^3.5.1",
"body-parser": "^1.15.1",
"config": "^3.0.0",
"cors": "^2.7.1",
"express": "^4.14.0",
"get-parameter-names": "^0.3.0",
"http-status-codes": "^1.3.0",
"joi": "^14.0.0",
"jsonwebtoken": "^8.3.0",
"lodash": "^4.17.11",
"moment": "^2.29.4",
"morgan": "^1.7.0",
"tc-core-library-js": "appirio-tech/tc-core-library-js.git#v2.4.1",
"topcoder-healthcheck-dropin": "^1.0.3",
"uuid": "^3.3.2",
"winston": "^3.1.0"
},
"standard": {
"env": [
"mocha"
]
}
}