This repository was archived by the owner on Mar 13, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
55 lines (55 loc) · 1.5 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
{
"name": "ubahn-api",
"version": "1.0.0",
"description": "UBahn api",
"main": "app.js",
"scripts": {
"start": "node app.js",
"lint": "standard \"**/*.js\"",
"delete-data": "node scripts/db/dropAll.js",
"migrate-db-to-es": "node scripts/db/dumpDbToEs.js",
"migrations": "node scripts/db/migrations.js",
"insert-data": "node scripts/db/insert-data.js",
"migrate-qldb-to-pg": "node scripts/db/migrateQldbToPg.js",
"import-s3-data": "node scripts/db/importS3ToQldb.js"
},
"repository": {
"type": "git",
"url": ""
},
"dependencies": {
"@elastic/elasticsearch": "^7.9.1",
"@hapi/joi": "^16.1.8",
"@hapi/joi-date": "^2.0.1",
"amazon-qldb-driver-nodejs": "^0.1.1-preview.2",
"aws-sdk": "^2.810.0",
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"config": "^3.2.4",
"cors": "^2.8.5",
"express": "^4.17.1",
"get-parameter-names": "^0.3.0",
"ion-js": "^3.1.2",
"js-yaml": "^3.13.1",
"jsbi": "^3.1.4",
"lodash": "^4.17.19",
"node-cache": "^5.1.2",
"pg": "^8.5.1",
"pg-hstore": "^2.3.3",
"pgtools": "^0.3.0",
"querystring": "^0.2.0",
"sequelize": "^6.3.5",
"swagger-ui-express": "^4.1.4",
"tc-bus-api-wrapper": "github:topcoder-platform/tc-bus-api-wrapper",
"tc-core-library-js": "github:appirio-tech/tc-core-library-js#v2.6.4",
"umzug": "^2.3.0",
"uuid": "^7.0.1",
"winston": "^3.2.1"
},
"devDependencies": {
"standard": "^14.3.0"
},
"engines": {
"node": "12.x"
}
}