This repository was archived by the owner on Mar 12, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
61 lines (61 loc) · 1.94 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
{
"name": "skills-api",
"version": "1.0.0",
"description": "Skills API",
"main": "app.js",
"scripts": {
"start": "node app.js",
"start:dev": "npx nodemon --exec npm start",
"lint": "standard \"**/*.js\"",
"lint:fix": "standard --fix \"**/*.js\"",
"create-db": "node scripts/db/createDb.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",
"create-index": "node scripts/es/createIndex.js",
"delete-index": "node scripts/es/deleteIndex.js",
"generate:doc:permissions": "node scripts/permissions-doc",
"generate:doc:permissions:dev": "npx nodemon --watch scripts/permissions-doc --watch src --ext js,jsx,hbs --exec npm run generate:doc:permissions"
},
"repository": {
"type": "git",
"url": ""
},
"dependencies": {
"@elastic/elasticsearch": "^8.9.0",
"@hapi/joi": "^16.1.8",
"@topcoder-platform/topcoder-bus-api-wrapper": "github:topcoder-platform/tc-bus-api-wrapper",
"aws-sdk": "^2.1448.0",
"body-parser": "^1.20.2",
"cls-hooked": "^4.2.2",
"config": "^3.3.9",
"cors": "^2.8.5",
"elasticsearch": "^15.0.0",
"express": "^4.18.2",
"get-parameter-names": "^0.3.0",
"handlebars": "^4.7.8",
"http-aws-es": "^6.0.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"pgtools": "^1.0.1",
"prompt-confirm": "^2.0.4",
"sequelize": "^6.32.1",
"swagger-ui-express": "^5.0.0",
"tc-core-library-js": "github:appirio-tech/tc-core-library-js#v2.6.8",
"umzug": "^3.3.1",
"winston": "^3.10.0"
},
"devDependencies": {
"eslint": "^8.48.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.0.2",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^3.0.1",
"standard": "^17.1.0"
},
"engines": {
"node": "18.17.0"
}
}