-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
42 lines (42 loc) · 1.15 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
{
"name": "topcoder-groups-api",
"version": "1.0.0",
"description": "TopCoder Groups API",
"main": "app.js",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"lint": "standard",
"lint:fix": "standard --fix",
"server-for-perf-test": "NODE_ENV=perftest node app.js",
"perf-test": "NODE_ENV=perftest node perf-test.js"
},
"author": "Topcoder",
"devDependencies": {
"nodemon": "^2.0.1",
"standard": "^17.0.0"
},
"dependencies": {
"axios": "^1.3.5",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"config": "^3.2.4",
"cors": "^2.7.1",
"express": "^4.17.1",
"get-parameter-names": "^0.3.0",
"http-status-codes": "^2.2.0",
"joi": "^14.0.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.19",
"morgan": "^1.7.0",
"neo4j-driver": "^5.3.0",
"redis": "^4.6.4",
"swagger-ui-express": "^4.1.5",
"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",
"uuid-validate": "0.0.3",
"winston": "^3.2.1",
"yamljs": "^0.3.0"
}
}