-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.73 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.73 KB
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
{
"name": "topcoder-challenges-api",
"version": "1.0.0",
"description": "TopCoder Challenges V5 API",
"main": "app.js",
"scripts": {
"start": "node app.js",
"start:dev": "nodemon app.js",
"postinstall": "npx prisma generate",
"lint": "prettier src/**/*.js",
"lint:fix": "prettier --write src/**/*.js",
"standard-lint": "standard",
"standard-lint:fix": "standard --fix",
"create-tables": "npx prisma migrate dev",
"seed-tables": "node src/scripts/seed-tables.js",
"check-timeline-templates": "node src/scripts/check-templates.js",
"recalculate-winners": "node data-migration/src/scripts/recalculateChallengeWinners.js",
"recalculate-winners:csv": "node data-migration/src/scripts/recalculateChallengeWinners.js --csv-only",
"test": "NODE_ENV=test mocha \"test/unit/**/*.test.js\" --exit",
"e2e": "mocha test/e2e/*.test.js --exit",
"test:cov": "nyc --reporter=html --reporter=text npm test",
"e2e:cov": "nyc --reporter=html --reporter=text npm run e2e",
"services:up": "docker-compose -f ./local/docker-compose.yml up -d",
"services:down": "docker-compose -f ./local/docker-compose.yml down",
"services:logs": "docker-compose -f ./local/docker-compose.yml logs"
},
"author": "TCSCODER",
"license": "MIT",
"repository": "https://github.com/topcoder-platform/challenge-api",
"devDependencies": {
"aws-sdk-client-mock": "^4.1.0",
"chai": "^6.2.0",
"chai-http": "^5.1.2",
"mocha": "^11.7.4",
"mocha-prepare": "^0.1.0",
"nodemon": "^3.1.10",
"nyc": "^17.1.0",
"prettier": "^3.6.2",
"prisma": "^6.18.0",
"standard": "^17.1.2"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.716.0",
"@prisma/client": "^6.18.0",
"axios": "^1.13.1",
"axios-retry": "^4.5.0",
"bluebird": "^3.7.2",
"body-parser": "^2.2.0",
"config": "^4.1.1",
"cors": "^2.8.5",
"decimal.js": "^10.6.0",
"deep-equal": "^2.2.3",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"express-fileupload": "^1.5.2",
"express-interceptor": "^1.2.0",
"get-parameter-names": "^0.3.0",
"http-status-codes": "^2.3.0",
"joi": "^18.0.1",
"json-rules-engine": "^7.3.1",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"node-cache": "^5.1.2",
"swagger-ui-express": "^5.0.1",
"tc-core-library-js": "github:topcoder-platform/tc-core-library-js#master",
"topcoder-bus-api-wrapper": "github:topcoder-platform/tc-bus-api-wrapper#master",
"uuid": "^11.0.3",
"winston": "^3.18.3",
"xss": "^1.0.15",
"yamljs": "^0.3.0"
},
"standard": {
"ignore": [
"mock-api"
],
"env": [
"mocha"
]
},
"engines": {
"node": "22.x"
},
"volta": {
"node": "22.x"
}
}