-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
103 lines (103 loc) · 3.75 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "taas-apis",
"version": "1.0.0",
"description": "Topcoder TaaS API",
"main": "app.js",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"dev:debug": "nodemon --inspect app.js",
"lint": "standard",
"lint:fix": "standard --fix",
"init-db": "node src/init-db.js",
"data:export": "node scripts/data/exportData.js",
"data:import": "node scripts/data/importData.js",
"migrate": "npx sequelize db:migrate",
"migrate:undo": "npx sequelize db:migrate:undo",
"test": "mocha test/unit/*.test.js --timeout 30000 --require test/prepare.js --exit",
"services:up": "docker-compose -f ./local/docker-compose.yml --env-file .env up -d",
"services:down": "docker-compose -f ./local/docker-compose.yml down",
"services:logs": "docker-compose -f ./local/docker-compose.yml logs",
"services:rebuild": "docker-compose -f ./local/docker-compose.yml build --no-cache",
"local:init": "npm run local:reset && npm run data:import -- --force",
"local:reset": "npm run delete-index -- --force || true && npm run create-index -- --force && npm run init-db force",
"cov": "nyc --reporter=html --reporter=text npm run test",
"demo-email-notifications": "node scripts/demo-email-notifications",
"migrate:backup-withdrawn": "node scripts/withdrawn-migration/backup.js",
"migrate:migration-withdrawn": "node scripts/withdrawn-migration/migration.js",
"migrate:restore-withdrawn": "node scripts/withdrawn-migration/restore.js",
"migrate:backup-rcrm-status": "node scripts/job-rcrm-status-migration/backup.js",
"migrate:migration-rcrm-status": "node scripts/job-rcrm-status-migration/migration.js",
"migrate:restore-rcrm-status": "node scripts/job-rcrm-status-migration/restore.js",
"migrate:backup-rcrm-status-v2": "node scripts/job-rcrm-status-migration-v2/backup.js",
"migrate:migration-rcrm-status-v2": "node scripts/job-rcrm-status-migration-v2/migration.js",
"migrate:restore-rcrm-status-v2": "node scripts/job-rcrm-status-migration-v2/restore.js",
"job-candidate:sync": "node scripts/job-candidate/sync-job-candidate.js",
"job-candidate:tcUserId:generate": "node scripts/job-candidate/generate-tcUserId-for-existing-candidates.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@joi/date": "^2.0.1",
"@topcoder-platform/topcoder-bus-api-wrapper": "github:topcoder-platform/tc-bus-api-wrapper",
"async-mutex": "^0.3.2",
"aws-sdk": "^2.787.0",
"bottleneck": "^2.19.5",
"config": "^3.3.2",
"cors": "^2.8.5",
"date-fns": "^2.16.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-interceptor": "^1.2.0",
"get-parameter-names": "^0.3.0",
"http-status": "^1.4.2",
"http-status-codes": "^2.1.4",
"joi": "^17.2.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"moment-timezone": "^0.5.33",
"node-schedule": "^2.0.0",
"pg": "^8.4.0",
"pg-hstore": "^2.3.3",
"prompt-confirm": "^2.0.4",
"retry": "^0.13.1",
"rewire": "^5.0.0",
"sequelize": "^6.3.5",
"stripe": "^8.168.0",
"superagent": "^6.1.0",
"tc-core-library-js": "github:appirio-tech/tc-core-library-js#v2.6.4",
"urijs": "^1.19.7",
"util": "^0.12.3",
"uuid": "^8.3.1",
"winston": "^3.3.3"
},
"devDependencies": {
"chai": "^4.2.0",
"csv-parser": "^3.0.0",
"handlebars": "^4.7.7",
"mocha": "^8.1.3",
"no-kafka": "^3.4.3",
"nodemon": "^2.0.4",
"nyc": "^15.1.0",
"sequelize-cli": "^6.2.0",
"sinon": "^9.2.0",
"standard": "^14.3.4"
},
"standard": {
"ignore": [
"/docs",
"/migrations"
],
"env": [
"mocha"
]
},
"nyc": {
"exclude": [
"src/common/logger.js",
"test/unit/**"
]
}
}